/* ankieta-mobile.css - Мобильная адаптация для страницы анкеты */

/* ===== ОБЩИЕ СТИЛИ ДЛЯ МОБИЛЬНОГО ХЕДЕРА ===== */
@media (max-width: 1024px) {
  /* HEADER - Мобильная версия */
  header {
    top: 10px;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    position: fixed;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
  }

  body.dark-theme header {
    background: rgba(45, 45, 45, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .top-left-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .top-left-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
  }

  .top-left-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }

  /* Скрываем основную навигацию на мобильных */
  .main-nav {
    display: none !important;
  }

  /* Бургер меню */
  .burger-menu {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
  }

  .burger-line {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  body.dark-theme .burger-line {
    background-color: #fff;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Боковое меню */
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 90px 30px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }

  body.dark-theme .side-menu {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
  }

  .side-menu.open {
    right: 0;
  }

  .side-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .side-menu a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
  }

  body.dark-theme .side-menu a {
    color: #fff;
  }

  .side-menu a:hover {
    color: #0d4269;
    background: rgba(13, 66, 105, 0.1);
    border-color: rgba(13, 66, 105, 0.2);
    transform: translateX(5px);
  }

  body.dark-theme .side-menu a:hover {
    color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.2);
  }

  .close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1002;
  }

  body.dark-theme .close-menu {
    color: #fff;
  }

  .close-menu:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
  }

  body.dark-theme .close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Overlay для размытия фона */
  .overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
  }

  .overlay-blur.active {
    display: block;
  }

  /* Сдвигаем основной контент вниз из-за фиксированного хедера */
  .survey-section {
    margin-top: 90px;
  }
}

/* ===== СТИЛИ ДЛЯ ДЕСКТОПНОЙ ВЕРСИИ ===== */
@media (min-width: 1025px) {
  .burger-menu {
    display: none !important;
  }
  
  .side-menu {
    display: none !important;
  }
  
  .overlay-blur {
    display: none !important;
  }
}

/* ===== АДАПТАЦИЯ ОСНОВНОГО КОНТЕНТА АНКЕТЫ ===== */
@media (max-width: 1024px) {
  .survey-section {
    padding: 30px 20px 20px !important;
    width: 100% !important;
    min-height: calc(100vh - 90px) !important;
    box-sizing: border-box !important;
  }

  .survey-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .survey-title {
    font-size: 24px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 0 10px !important;
  }

  .survey-intro {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    color: #666 !important;
    padding: 0 15px !important;
  }

  /* Форма анкеты */
  .survey-form {
    gap: 20px !important;
    width: 100% !important;
  }

  /* Вопросы анкеты */
  .survey-question {
    background: white !important;
    padding: 25px 20px !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    margin-bottom: 20px !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
  }

  .survey-question:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
  }

  .survey-question label {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    display: block !important;
    line-height: 1.4 !important;
    color: #333 !important;
  }

  /* Индикатор удовлетворенности */
  .satisfaction-indicator {
    background: white !important;
    padding: 25px 20px !important;
    border-radius: 15px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    border: 2px solid #f0f0f0 !important;
  }

  .satisfaction-indicator label {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #333 !important;
    display: block !important;
    line-height: 1.4 !important;
  }

  .faces {
    display: flex !important;
    justify-content: space-between !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding: 10px 5px !important;
  }

  .face-option {
    flex-shrink: 0 !important;
    min-width: 55px !important;
  }

  .face-option span {
    width: 48px !important;
    height: 48px !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
  }

  .face-option:hover span {
    transform: scale(1.1) !important;
  }

  .face-option span img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* Шкала оценок */
  .scale-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: stretch !important;
  }

  .scale-wrapper span {
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 !important;
    color: #666 !important;
    font-weight: 600 !important;
  }

  .scale-wrapper label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    padding: 12px 0 !important;
    border-bottom: 2px solid #f5f5f5 !important;
    transition: all 0.3s ease !important;
  }

  .scale-wrapper label:hover {
    background: rgba(13, 66, 105, 0.05) !important;
    border-radius: 8px !important;
    padding: 12px 10px !important;
  }

  .scale-wrapper label:last-child {
    border-bottom: none !important;
  }

  .scale-wrapper input + span {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 2px solid #ddd !important;
    background: white !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }

  .scale-wrapper input:checked + span {
    background-color: #0d4269 !important;
    color: white !important;
    border-color: #0d4269 !important;
    transform: scale(1.1) !important;
  }

  /* Выпадающий список */
  .custom-select-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 15px !important;
  }

  .custom-select {
    width: 100% !important;
    padding: 16px 50px 16px 20px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    background-color: white !important;
    border: 2px solid #e0e0e0 !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
  }

  .custom-select:focus {
    border-color: #0d4269 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(13, 66, 105, 0.1) !important;
  }

  /* Кнопка отправки */
  .survey-submit {
    width: 100% !important;
    padding: 20px !important;
    font-size: 18px !important;
    border-radius: 15px !important;
    margin-top: 25px !important;
    align-self: center !important;
    background: #0d4269 !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 4px 15px rgba(13, 66, 105, 0.3) !important;
  }

  .survey-submit:hover {
    background: #09304c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(13, 66, 105, 0.4) !important;
  }

  /* Футер */
  .site-footer {
    padding: 30px 20px !important;
    text-align: center !important;
    background: #f8f9fa !important;
    margin-top: 30px !important;
  }

  .footer-container {
    font-size: 16px !important;
    color: #666 !important;
    font-weight: 500 !important;
  }
}

/* ===== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 768px) {
  header {
    height: 65px;
    padding: 0 15px;
    width: calc(100% - 30px);
  }

  .top-left-icons img {
    width: 26px;
    height: 26px;
  }

  .burger-menu {
    width: 30px;
    height: 22px;
  }

  .survey-section {
    padding: 25px 15px 15px !important;
    margin-top: 85px !important;
  }

  .survey-title {
    font-size: 22px !important;
  }

  .survey-intro {
    font-size: 15px !important;
  }

  .survey-question {
    padding: 22px 18px !important;
  }

  .survey-question label {
    font-size: 16px !important;
  }

  .face-option span {
    width: 44px !important;
    height: 44px !important;
  }

  .scale-wrapper input + span {
    width: 30px !important;
    height: 30px !important;
  }
}

/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 480px) {
  header {
    top: 8px;
    height: 60px;
    padding: 0 12px;
    width: calc(100% - 24px);
  }

  .top-left-icons {
    gap: 10px;
  }

  .top-left-icons img {
    width: 24px;
    height: 24px;
  }

  .burger-menu {
    width: 28px;
    height: 20px;
  }

  .burger-line {
    height: 2.5px;
  }

  .side-menu {
    width: 90%;
    padding: 80px 20px 20px;
  }

  .side-menu a {
    font-size: 18px;
    padding: 14px 18px;
  }

  .close-menu {
    top: 20px;
    right: 20px;
    font-size: 28px;
    width: 45px;
    height: 45px;
  }

  .survey-section {
    padding: 20px 12px 12px !important;
    margin-top: 80px !important;
  }

  .survey-title {
    font-size: 20px !important;
  }

  .survey-intro {
    font-size: 14px !important;
    padding: 0 10px !important;
  }

  .survey-question {
    padding: 20px 15px !important;
    border-radius: 12px !important;
  }

  .survey-question label {
    font-size: 15px !important;
  }

  .satisfaction-indicator {
    padding: 20px 15px !important;
  }

  .satisfaction-indicator label {
    font-size: 15px !important;
  }

  .face-option {
    min-width: 50px !important;
  }

  .face-option span {
    width: 40px !important;
    height: 40px !important;
  }

  .scale-wrapper label {
    font-size: 15px !important;
    padding: 10px 0 !important;
  }

  .scale-wrapper input + span {
    width: 28px !important;
    height: 28px !important;
  }

  .custom-select {
    padding: 14px 45px 14px 15px !important;
    font-size: 15px !important;
  }

  .survey-submit {
    padding: 18px !important;
    font-size: 16px !important;
  }
}

/* ===== ТЕМНАЯ ТЕМА ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 1024px) {
  body.dark-theme .survey-section {
    background: transparent !important;
  }

  body.dark-theme .survey-title {
    color: #ffffff !important;
  }

  body.dark-theme .survey-intro {
    color: #e0e0e0 !important;
  }

  body.dark-theme .survey-question {
    background: #2a2a2a !important;
    border-color: #444 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  }

  body.dark-theme .survey-question label {
    color: #ffffff !important;
  }

  body.dark-theme .satisfaction-indicator {
    background: #2a2a2a !important;
    border-color: #444 !important;
  }

  body.dark-theme .satisfaction-indicator label {
    color: #ffffff !important;
  }

  body.dark-theme .custom-select {
    background: #333 !important;
    border-color: #555 !important;
    color: #ffffff !important;
  }

  body.dark-theme .scale-wrapper label {
    color: #e0e0e0 !important;
    border-bottom-color: #444 !important;
  }

  body.dark-theme .scale-wrapper label:hover {
    background: rgba(74, 158, 255, 0.1) !important;
  }

  body.dark-theme .scale-wrapper span {
    color: #b0b0b0 !important;
  }

  body.dark-theme .scale-wrapper input + span {
    background: #333 !important;
    border-color: #555 !important;
    color: #e0e0e0 !important;
  }

  body.dark-theme .scale-wrapper input:checked + span {
    background-color: #4a9eff !important;
    border-color: #4a9eff !important;
    color: #ffffff !important;
  }

  body.dark-theme .site-footer {
    background: #1a1a1a !important;
  }

  body.dark-theme .footer-container {
    color: #b0b0b0 !important;
  }

  body.dark-theme .top-left-icons img {
    filter: invert(1);
  }
}

/* ===== УЛУЧШЕНИЕ СКРОЛЛА ===== */
.survey-form {
  scroll-behavior: smooth;
}

/* ===== АНИМАЦИИ И ПЕРЕХОДЫ ===== */
.survey-question, .satisfaction-indicator, .survey-submit {
  transition: all 0.3s ease;
}

/* ===== УЛУЧШЕНИЕ ДОСТУПНОСТИ ===== */
@media (prefers-reduced-motion: reduce) {
  .burger-menu, .side-menu, .overlay-blur, .survey-question, .survey-submit {
    transition: none;
  }
}

/* ankieta-mobile.css - Мобильная адаптация для страницы анкеты */

/* ===== ОБЩИЕ СТИЛИ ДЛЯ МОБИЛЬНОГО ХЕДЕРА ===== */
@media (max-width: 1024px) {
  /* HEADER - Мобильная версия */
  header {
    top: 10px;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    position: fixed;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
  }

  body.dark-theme header {
    background: rgba(45, 45, 45, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .top-left-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    position: static;
    transform: none;
    margin: 0;
  }

  .top-left-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
  }

  .top-left-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }

  /* Скрываем основную навигацию на мобильных */
  .main-nav {
    display: none !important;
  }

  /* Бургер меню - ПРАВАЯ СТОРОНА */
  .burger-menu {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    order: 2; /* Помещаем справа */
  }

  .burger-line {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  body.dark-theme .burger-line {
    background-color: #fff;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Боковое меню */
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 90px 30px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }

  body.dark-theme .side-menu {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
  }

  .side-menu.open {
    right: 0;
  }

  .side-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .side-menu a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
  }

  body.dark-theme .side-menu a {
    color: #fff;
  }

  .side-menu a:hover {
    color: #0d4269;
    background: rgba(13, 66, 105, 0.1);
    border-color: rgba(13, 66, 105, 0.2);
    transform: translateX(5px);
  }

  body.dark-theme .side-menu a:hover {
    color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.2);
  }

  .close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1002;
  }

  body.dark-theme .close-menu {
    color: #fff;
  }

  .close-menu:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
  }

  body.dark-theme .close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Overlay для размытия фона */
  .overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay-blur.active {
    opacity: 1;
    visibility: visible;
  }

  /* Сдвигаем основной контент вниз из-за фиксированного хедера */
  .survey-section {
    margin-top: 90px;
  }
}

@media (max-width: 1024px) {
  /* HEADER - Мобильная версия */
  header {
    position: fixed !important;
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px) !important;
    height: 70px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
  }

  body.dark-theme header {
    background: rgba(45, 45, 45, 0.95) !important;
  }

  /* Левые иконки */
  .top-left-icons {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .top-left-icons img {
    width: 28px !important;
    height: 28px !important;
  }

  /* Скрываем десктопную навигацию */
  .main-nav {
    display: none !important;
  }

  /* Бургер меню - ПОКАЗЫВАЕМ */
  .burger-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 32px !important;
    height: 24px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
  }

  .burger-line {
    width: 100% !important;
    height: 3px !important;
    background-color: #000 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
  }

  body.dark-theme .burger-line {
    background-color: #fff !important;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px) !important;
  }

  /* Боковое меню - ПОКАЗЫВАЕМ */
  .side-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 350px !important;
    height: 100vh !important;
    background: white !important;
    z-index: 1002 !important;
    transition: right 0.3s ease !important;
    padding: 90px 30px 30px !important;
    overflow-y: auto !important;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15) !important;
  }

  .side-menu.open {
    right: 0 !important;
  }

  .side-menu nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .side-menu a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
  }

  .side-menu a:hover {
    color: #0d4269 !important;
    background: #f8f9fa !important;
    padding-left: 15px !important;
  }

  .close-menu {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: none !important;
    border: none !important;
    font-size: 30px !important;
    cursor: pointer !important;
    color: #333 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    z-index: 1003 !important;
  }

  /* Overlay */
  .overlay-blur {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 1001 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease !important;
  }

  .overlay-blur.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Сдвигаем контент */
  .survey-section {
    padding: 100px 20px 40px !important;
    margin-top: 0 !important;
  }

  /* Предотвращаем скролл при открытом меню */
  body.menu-open {
    overflow: hidden !important;
  }
}

/* Скрываем мобильные элементы на десктопе */
@media (min-width: 1025px) {
  .burger-menu {
    display: none !important;
  }
  
  .side-menu {
    display: none !important;
  }
  
  .overlay-blur {
    display: none !important;
  }
}