/* ===== АДАПТИВНЫЙ ДИЗАЙН ===== */
/* Заменяет старые мобильные стили из index.css */

/* ===== CSS ПЕРЕМЕННЫЕ ДЛЯ АВТОСКЕЙЛА ===== */
:root {
  --wrapper-max-width: 1400px;
  --wrapper-padding: 24px;
  --heading-font-size: 48px;
  --subheading-font-size: 32px;
  --price-heading-font-size: 40px;
  --form-padding: 48px;
  --item-padding: 32px;
  --nav-font-size: 16px;
  --nav-padding: 12px 24px;
  --phone-font-size: 18px;
  --price-min-width: 300px;
  --prices-max-width: 100%;
  
  /* Единые отступы для мобильных устройств */
  --mobile-padding: 5px;
  
  /* Новые переменные для мобильного меню */
  --mobile-menu-bg: #2d5c8a;
  --mobile-menu-text: #ffffff;
  --mobile-menu-hover: #1e3f5f;
  --mobile-menu-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --mobile-menu-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --mobile-menu-border-radius: 12px;
  --mobile-menu-item-height: 56px;
  --mobile-menu-item-padding: 16px 24px;
  --mobile-menu-gap: 8px;
}

/* ===== УЛУЧШЕННОЕ МОБИЛЬНОЕ МЕНЮ ===== */
body .mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: linear-gradient(135deg, var(--mobile-menu-bg) 0%, #1e3f5f 100%) !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  transform: translateX(-100%) !important;
  transition: var(--mobile-menu-transition) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

body .mobile-menu.active {
  transform: translateX(0) !important;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--mobile-menu-gap);
  width: 100%;
  max-width: 400px;
  padding: 0 24px;
}

.mobile-menu__nav-link {
  width: 100%;
  height: var(--mobile-menu-item-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--mobile-menu-border-radius);
  color: var(--mobile-menu-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--mobile-menu-transition);
  border: 2px solid transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mobile-menu__nav-link:hover,
.mobile-menu__nav-link:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu__nav-link:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu__phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--mobile-menu-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__phone {
  color: var(--mobile-menu-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: var(--mobile-menu-transition);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__phone:hover,
.mobile-menu__phone:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.mobile-menu__socials-link {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--mobile-menu-transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu__socials-link:hover,
.mobile-menu__socials-link:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-menu__socials-link svg {
  width: 42px;
  height: 42px;
}

.mobile-menu__socials-link path {
  fill: var(--mobile-menu-text);
  transition: var(--mobile-menu-transition);
}

.mobile-menu__socials-link:hover path {
  fill: #ffffff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}

/* Специальные цвета для мессенджеров */
.mobile-menu__socials-link[href*="wa.me"]:hover {
  background: rgba(37, 211, 102, 0.3);
  border-color: rgba(37, 211, 102, 0.6);
}

.mobile-menu__socials-link[href*="t.me"]:hover {
  background: rgba(0, 136, 204, 0.3);
  border-color: rgba(0, 136, 204, 0.6);
}

/* ===== УЛУЧШЕННЫЙ БУРГЕР-МЕНЮ ===== */
.header__burger {
  position: relative;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--mobile-menu-transition);
  border: 2px solid transparent;
}

.header__burger:hover,
.header__burger:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.header__burger.active {
  background: rgba(255, 255, 255, 0.2);
}

.header__burger svg {
  width: 32px;
  height: 32px;
}

.header__burger .line {
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  transition: var(--mobile-menu-transition);
}

.header__burger:hover .line {
  stroke: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* ===== АНИМАЦИЯ БУРГЕРА ===== */
.ham.hamRotate.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham.hamRotate.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham.hamRotate.ham1.active .top {
  stroke-dasharray: 0 139;
  stroke-dashoffset: -98px;
}

.ham.hamRotate.ham1.active .bottom {
  stroke-dasharray: 0 180;
  stroke-dashoffset: -138px;
}

/* ===== ЗАКРЫТИЕ МОБИЛЬНОГО МЕНЮ ===== */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--mobile-menu-transition);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--mobile-menu-transition);
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* ===== БОЛЬШИЕ ЭКРАНЫ (1400px+) ===== */
@media (min-width: 1400px) {
  :root {
    --wrapper-max-width: 1600px;
    --wrapper-padding: 40px;
    --heading-font-size: 56px;
    --subheading-font-size: 42px;
    --price-heading-font-size: 44px;
    --form-padding: 56px;
    --item-padding: 40px;
  }
  
  .wrapper {
    max-width: var(--wrapper-max-width);
    padding: 0 var(--wrapper-padding);
  }
  
  .promo-section__heading {
    font-size: var(--heading-font-size);
  }
  
  .promo-section__heading div {
    font-size: 48px;
  }
  
  .form-section__subheading {
    font-size: var(--subheading-font-size);
  }
  
  .price-section__list-item-heading {
    font-size: var(--price-heading-font-size);
  }
  
  .promo-section__prices-container {
    gap: 32px;
    max-width: var(--prices-max-width, 100%);
  }
  
  .promo-section__price-group {
    min-width: var(--price-min-width, 400px);
    flex: 1;
  }
}

/* ===== ОЧЕНЬ БОЛЬШИЕ ЭКРАНЫ (1600px+) ===== */
@media (min-width: 1600px) {
  :root {
    --wrapper-max-width: 1800px;
    --wrapper-padding: 50px;
    --heading-font-size: 64px;
    --subheading-font-size: 48px;
    --price-heading-font-size: 48px;
    --form-padding: 56px;
    --item-padding: 40px;
  }
  
  .wrapper {
    max-width: var(--wrapper-max-width);
    padding: 0 var(--wrapper-padding);
  }
  
  .promo-section__heading {
    font-size: var(--heading-font-size);
  }
  
  .promo-section__heading div {
    font-size: 52px;
  }
  
  .form-section__subheading {
    font-size: var(--subheading-font-size);
  }
  
  .price-section__list-item-heading {
    font-size: var(--price-heading-font-size);
  }
  
  .promo-section__subheading {
    font-size: 28px;
  }
  
  .promo-section__subheading span {
    font-size: 32px;
  }
  
  .form-section__form {
    padding: var(--form-padding);
  }
  
  .price-section__list-item {
    padding: var(--item-padding);
  }
  
  .promo-section__prices-container {
    gap: 40px;
    max-width: var(--prices-max-width, 100%);
  }
  
  .promo-section__price-group {
    min-width: var(--price-min-width, 500px);
    flex: 1;
  }
}

/* ===== ПЛАНШЕТЫ (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .promo-section__heading {
    text-align: left !important;
  }
  
  .promo-section__heading div {
    text-align: left !important;
  }
}

/* ===== ДЕСКТОП (1024px+) ===== */
@media (min-width: 1024px) {
  .promo-section__heading {
    text-align: left !important;
  }
  
  .promo-section__heading div {
    text-align: left !important;
  }
}

/* ===== УЛЬТРА ШИРОКИЕ ЭКРАНЫ (1920px+) ===== */
@media (min-width: 1920px) {
  .wrapper {
    max-width: 2000px;
    padding: 0 60px;
  }
  
  .promo-section__heading {
    font-size: 72px;
  }
  
  .promo-section__heading div {
    font-size: 56px;
  }
  
  .form-section__subheading {
    font-size: 52px;
  }
  
  .price-section__list-item-heading {
    font-size: 52px;
  }
  
  .promo-section__subheading {
    font-size: 32px;
  }
  
  .promo-section__subheading span {
    font-size: 36px;
  }
  
  .form-section__form {
    padding: 64px;
  }
  
  .price-section__list-item {
    padding: 48px;
  }
  
  .cond-section__list-item {
    padding: 40px;
  }
}

/* ===== 4K ЭКРАНЫ (2560px+) ===== */
@media (min-width: 2560px) {
  .wrapper {
    max-width: 2400px;
    padding: 0 80px;
  }
  
  .promo-section__heading {
    font-size: 88px;
  }
  
  .promo-section__heading div {
    font-size: 72px;
  }
  
  .form-section__subheading {
    font-size: 64px;
  }
  
  .price-section__list-item-heading {
    font-size: 64px;
  }
  
  .promo-section__subheading {
    font-size: 40px;
  }
  
  .form-section__form {
    padding: 80px;
  }
  
  .price-section__list-item {
    padding: 64px;
  }
  
  .cond-section__list-item {
    padding: 56px;
  }
  
  .header__nav-link,
  .header__nav-btn {
    font-size: 20px;
    padding: 16px 32px;
  }
  
  .phone-number {
    /* Размер шрифта управляется в mobile-optimization.css */
  }
  
  .promo-section__bg {
    object-position: 20% 20%;
  }
}

/* ===== СРЕДНИЕ ЭКРАНЫ (1200px - 1399px) ===== */
@media (min-width: 1200px) and (max-width: 1399px) {
  .wrapper {
    max-width: 1400px;
    padding: 0 32px;
  }
  
  /* Десктопная шапка */
  body .header .header__burger {
    display: none;
  }
}

/* ===== ПЛАНШЕТЫ (768px - 1199px) ===== */
@media (min-width: 768px) and (max-width: 1199px) {
  .wrapper {
    max-width: 100%;
    padding: 0 24px;
  }
  
  /* Планшетная шапка */
  body .header .header__burger {
    display: none;
  }
  
  /* Увеличенные отступы для основных секций */
  .promo-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .promo-section__lines {
    top: 80px;
    padding: 0 24px;
  }
  
  .promo-section__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  
  .form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .form-section__wrapper {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .price-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .price-section__wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .cond-section__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  
  .cond-section .subheading {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .cond-section__heading {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .cond-section__list {
    margin-top: 30px;
    margin-bottom: 60px;
  }
  
  .cond-section__row-list {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .footer {
    padding-bottom: 40px;
  }
  
  .footer__wrapper {
    padding: 100px 0 40px 0;
    min-height: 100px;
  }
  
  .promo-section__heading {
    font-size: 42px;
  }
  
  .promo-section__heading div {
    font-size: 36px;
  }
  
  .promo-section__prices-container {
    gap: 20px;
    max-width: var(--prices-max-width, 100%);
  }
  
  .promo-section__price-group {
    min-width: var(--price-min-width, 320px);
    flex: 1;
  }
  
  .promo-section__bg {
    object-position: 25% 25%;
  }
  
  .form-section__smoke {
    right: -200px;
    top: -200px;
    max-width: 800px;
  }
  
  .form-section__form {
    padding: 32px;
    margin-bottom: 80px;
  }
  
  .form-section__subheading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  .price-section__list_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  
  .cond-section__list {
    grid-template-columns: 1fr 1fr;
  }
  
  .cond-section__row-list {
    grid-template-columns: 1fr;
  }
}

/* ===== МОБИЛЬНЫЕ (480px - 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
  .wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Мобильная шапка */
  body .header .header__wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 60px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  body .header .header__sponsor {
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    order: 1 !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    padding-left: 0 !important;
  }
  
  .header__sponsor-text {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  
  .header__nav {
    display: none !important;
  }
  
  .header__links {
    display: none !important;
  }
  
  body .header .header__burger {
    display: flex !important;
    order: 3 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    margin-left: auto !important;
    margin-right: 16px !important;
  }
  
  .header__burger:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  .header__sponsor-logo {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
  }
  
  .header__sponsor picture {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .header__sponsor-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .header__sponsor-text {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  
  /* Увеличенные отступы для основных секций */
  .promo-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .promo-section__bg {
    object-fit: cover;
    object-position: 30% 30%;
  }
  
  .promo-section__lines {
    top: 40px;
    padding: 0 16px;
  }
  
  .promo-section__wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
    align-items: center;
    text-align: center;
  }
  
  .form-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .form-section__wrapper {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .price-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .price-section__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .cond-section__wrapper {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  
  .cond-section .subheading {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .cond-section__heading {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .cond-section__list {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  
  .cond-section__row-list {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .footer {
    padding-bottom: 30px;
  }
  
  .footer__wrapper {
    padding: 80px 0 30px 0;
    min-height: 80px;
  }
  
  .promo-section__heading {
    font-size: 32px;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  
  .promo-section__heading-line1 {
    display: block !important;
    /* Размер шрифта управляется в mobile-optimization.css */
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .promo-section__heading-line2 {
    display: block !important;
    /* Размер шрифта управляется в mobile-optimization.css */
    line-height: 1.2 !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Переопределяем старые стили */
  .promo-section__heading div {
    display: block !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .promo-section__buttons-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 12px !important;
    margin-bottom: 16px !important;
    flex-direction: column !important;
  }
  
  .promo-section__blue-text-holder,
  .promo-section__red-text-holder {
    flex: 0 0 auto;
    text-align: center;
  }
  
  .promo-section__blue-text,
  .promo-section__red-text {
    font-size: 14px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    z-index: 2 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  
  .promo-section__blue-text-holder {
    margin: 0 !important;
    text-align: center !important;
    max-width: none !important;
    position: relative !important;
  }
  
  .promo-section__blue-text-holder::after {
    content: "" !important;
    position: absolute !important;
    background-color: #2d5c8a !important;
    height: 107% !important;
    width: 130% !important;
    top: 0 !important;
    left: -28px !important;
    right: 0 !important;
    margin: auto !important;
    display: block !important;
    transform: skew(1deg, -30deg) rotate(30deg) !important;
    z-index: 0 !important;
    color: white !important;
  }
  
  .promo-section__red-text-holder {
    margin: 0 !important;
    text-align: center !important;
    max-width: none !important;
  }
  
  .promo-section__prices-container {
    flex-direction: column;
    gap: 20px;
    max-width: var(--prices-max-width, 100%);
    margin-top: 24px !important;
  }
  
  .promo-section__price-group {
    min-width: 100%;
    max-width: 500px;
    flex: 1;
  }
  
  .form-section__form {
    padding: 24px;
    margin-bottom: 60px;
  }
  
  .form-section__subheading {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .form-section__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .price-section__list_grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .cond-section__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cond-section__row-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .header__wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .header__nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .header__links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ===== МАЛЕНЬКИЕ МОБИЛЬНЫЕ (320px - 479px) ===== */
@media (min-width: 320px) and (max-width: 479px) {
  .wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Мобильная шапка */
  .header__wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 50px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .header__sponsor {
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    order: 1 !important;
    margin-left: 12px !important;
  }
  
  .header__sponsor-text {
    display: block !important;
    font-size: 10px;
    line-height: 1.1;
  }
  
  .header__nav {
    display: none !important;
  }
  
  .header__links {
    display: none !important;
  }
  
  body .header .header__burger {
    display: flex !important;
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 12px !important;
    width: 35px !important;
    height: 35px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .header__sponsor-logo {
    width: 35px;
    height: 35px;
  }
  
  /* Увеличенные отступы для основных секций */
  .promo-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .promo-section__bg {
    object-fit: cover;
    object-position: 30% 30%;
  }
  
  .promo-section__lines {
    top: 30px;
    padding: 0 12px;
  }
  
  .promo-section__wrapper {
    padding-top: 80px;
    padding-bottom: 60px;
    align-items: center;
    text-align: center;
  }
  
  .form-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .form-section__wrapper {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
  .price-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .price-section__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .cond-section__wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .cond-section .subheading {
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .cond-section__heading {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .cond-section__list {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  
  .cond-section__row-list {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  
  .footer {
    padding-bottom: 20px;
  }
  
  .footer__wrapper {
    padding: 60px 0 20px 0;
    min-height: 60px;
  }
  
  .promo-section__heading {
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }
  
  .promo-section__heading-line1 {
    display: block !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .promo-section__heading-line2 {
    display: block !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Переопределяем старые стили */
  .promo-section__heading div {
    display: block !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .promo-section__buttons-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    flex-direction: column !important;
  }
  
  .promo-section__blue-text-holder,
  .promo-section__red-text-holder {
    flex: 0 0 auto;
    text-align: center;
  }
  
  .promo-section__blue-text,
  .promo-section__red-text {
    font-size: 12px !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    z-index: 2 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  
  .promo-section__blue-text-holder {
    margin: 0 !important;
    text-align: center !important;
    max-width: none !important;
    position: relative !important;
  }
  
  .promo-section__blue-text-holder::after {
    content: "" !important;
    position: absolute !important;
    background-color: #2d5c8a !important;
    height: 107% !important;
    width: 130% !important;
    top: 0 !important;
    left: -28px !important;
    right: 0 !important;
    margin: auto !important;
    display: block !important;
    transform: skew(1deg, -30deg) rotate(30deg) !important;
    z-index: 0 !important;
    color: white !important;
  }
  
  .promo-section__red-text-holder {
    margin: 0 !important;
    text-align: center !important;
    max-width: none !important;
  }
  
  .promo-section__blue-text,
  .promo-section__red-text {
    font-size: 18px;
  }
  
  .promo-section__subheading {
    font-size: 20px;
    margin: 12px 0 16px 0;
  }
  
  .promo-section__subheading span {
    font-size: 24px;
  }
  
  .promo-section__prices-container {
    flex-direction: column;
    gap: 10px;
    max-width: var(--prices-max-width, 100%);
    margin-top: 16px !important;
  }
  
  .promo-section__price-group {
    min-width: 100%;
    max-width: 400px;
    flex: 1;
  }
  
  .promo-section__price-box {
    font-size: 28px;
    padding: 12px;
  }
  

  
  .form-section__form {
    padding: 20px;
    margin-bottom: 40px;
  }
  
  .form-section__form-input {
    padding: 12px;
    font-size: 16px;
  }
  
  .form-section__form-btn {
    padding: 12px 24px;
    font-size: 16px;
    z-index: 15;
  }
  
  .form-section__subheading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .form-section__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-section__list-item {
    padding: 16px;
  }
  
  .price-section__list_grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .price-section__list-item {
    padding: 16px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .price-section__list-item-heading {
    font-size: 32px;
  }
  
  .cond-section__list {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .cond-section__row-list {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .cond-section__row {
    padding: 12px 16px;
    /* Размер шрифта управляется в mobile-optimization.css */
  }
  
  .header__wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 12px 0;
  }
  
  .header__sponsor {
    font-size: 12px;
    gap: 6px;
  }
  
  .header__sponsor-logo {
    width: 32px;
  }
  
  .header__nav {
    flex-direction: column;
    gap: 6px;
  }
  
  .header__nav-link,
  .header__nav-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .header__links {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .phone-numbers {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  
  .phone-number {
    /* Размер шрифта управляется в mobile-optimization.css */
  }
  
  .footer__wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  
  .footer__contacts {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__socials {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ (до 319px) ===== */
@media (max-width: 319px) {
  .wrapper {
    max-width: 100%;
    padding: 0 8px;
  }
  
  .promo-section__wrapper {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  
  .promo-section__heading {
    /* Размер шрифта управляется в mobile-optimization.css */
  }
  
  .promo-section__heading div {
    /* Размер шрифта управляется в mobile-optimization.css */
  }
  
  .promo-section__blue-text,
  .promo-section__red-text {
    font-size: 16px;
  }
  
  .promo-section__subheading {
    font-size: 18px;
    margin: 12px 0 20px 0;
  }
  
  .promo-section__subheading span {
    font-size: 22px;
  }
  
  .promo-section__price-box {
    font-size: 24px;
    padding: 10px;
  }
  

  
  .form-section__form {
    padding: 16px;
  }
  
  .form-section__form-input {
    padding: 10px;
    font-size: 14px;
  }
  
  .form-section__form-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .form-section__subheading {
    font-size: 20px;
  }
  
  .price-section__list-item-heading {
    font-size: 28px;
  }
  
  .cond-section__row {
    padding: 10px 12px;
    font-size: 14px; /* Размер шрифта для очень маленьких экранов */
  }
}

/* ===== ЛАНДШАФТНАЯ ОРИЕНТАЦИЯ НА МОБИЛЬНЫХ ===== */
@media (max-width: 767px) and (orientation: landscape) {
  .promo-section__wrapper {
    padding-top: 40px;
    padding-bottom: 30px;
    min-height: auto;
  }
  
  .promo-section__heading {
    font-size: 28px;
  }
  
  .promo-section__heading div {
    font-size: 24px;
  }
  
  .promo-section__prices-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    max-width: var(--prices-max-width, 100%);
  }
  
  .promo-section__price-group {
    min-width: 250px;
    max-width: 300px;
    flex: 1;
  }
  
  .form-section__smoke {
    right: -150px;
    top: -150px;
    max-width: 600px;
  }
}

/* ===== АНИМИРОВАННЫЙ ВИДЖЕТ МЕССЕНДЖЕРОВ ===== */
.messenger-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}

.messenger-widget__toggle {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: messenger-bounce 2s infinite;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  pointer-events: auto;
}

.messenger-widget__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.messenger-widget__toggle svg {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  animation: icon-wiggle 3s ease-in-out infinite;
}

.messenger-widget__toggle:hover svg {
  transform: scale(1.1) rotate(5deg);
  animation: icon-bounce 0.6s ease-in-out;
}

.messenger-widget__menu {
  position: absolute;
  bottom: 90px;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
  pointer-events: auto;
}

.messenger-widget__menu.active {
  display: flex;
  animation: menu-appear 0.3s ease-out;
}

.messenger-widget__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: #333333;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  justify-content: center;
}

.messenger-widget__option:hover {
  background: #f5f5f5;
  transform: translateX(4px);
}

.messenger-widget__option--whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.messenger-widget__option--telegram:hover {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.messenger-widget__option svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.messenger-widget__option--whatsapp svg path {
  fill: #25d366;
}

.messenger-widget__option--telegram svg path {
  fill: #0088cc;
}

.messenger-widget__option:hover svg path {
  fill: currentColor;
}

/* Анимация подпрыгивания */
@keyframes messenger-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Анимация покачивания иконки */
@keyframes icon-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

/* Анимация подпрыгивания иконки при наведении */
@keyframes icon-bounce {
  0%, 100% {
    transform: scale(1.1) rotate(5deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
}

/* Анимация появления меню */
@keyframes menu-appear {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  /* Единые отступы для всех элементов */
  .wrapper,
  .promo-section__wrapper,
  .form-section__wrapper,
  .price-section__wrapper,
  .cond-section__wrapper {
    padding-left: var(--mobile-padding) !important;
    padding-right: var(--mobile-padding) !important;
  }
  
  /* Увеличенные виджеты */
  .messenger-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .messenger-widget__toggle {
    width: 60px;
    height: 60px;
  }
  
  .messenger-widget__toggle svg {
    width: 28px;
    height: 28px;
  }
  
  .messenger-widget__menu {
    bottom: 70px;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  /* Единые отступы для очень маленьких экранов */
  .wrapper,
  .form-section__wrapper,
  .price-section__wrapper,
  .cond-section__wrapper {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  
  /* Дополнительные отступы сверху чтобы меню не перекрывало заголовки */
  .promo-section__wrapper {
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-top: 70px !important;
  }
  
  .form-section__wrapper {
    padding-top: 50px !important;
  }
  
  .price-section__wrapper {
    padding-top: 50px !important;
  }
  
  .cond-section__wrapper {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
  }
  
  /* Уменьшенные отступы для очень маленьких экранов */
  .promo-section__buttons-container {
    gap: 16px !important;
    margin-top: 12px !important;
    margin-bottom: 20px !important;
  }
  
  .promo-section__prices-container {
    gap: 20px;
    margin-top: 24px !important;
  }
  
  .form-section__list {
    gap: 32px;
  }
  
  .price-section__list_grid {
    gap: 32px;
  }
  
  .cond-section__list {
    gap: 32px;
  }
  
  .header__wrapper {
    gap: 24px;
  }
  
  .header__nav {
    gap: 20px;
  }
  
  .header__links {
    gap: 20px;
  }
  
  .footer__socials {
    gap: 24px;
  }
  
  /* Увеличенные виджеты для маленьких экранов */
  .messenger-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .messenger-widget__toggle {
    width: 55px;
    height: 55px;
  }
  
  .messenger-widget__toggle svg {
    width: 26px;
    height: 26px;
  }
  
  .messenger-widget__menu {
    bottom: 70px;
    min-width: 150px;
    padding: 8px;
  }
  
  .messenger-widget__option {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* Анимация появления */
.messenger-widget {
  animation: messenger-appear 0.5s ease-out;
}

@keyframes messenger-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TOUCH-ДРУЖЕСТВЕННЫЕ ЭЛЕМЕНТЫ ===== */
@media (hover: none) and (pointer: coarse) {
  /* Основные интерактивные элементы */
  .header__nav-link,
  .header__nav-btn,
  .form-section__form-btn,
  .footer__socials-link,
  .mobile-menu__nav-link,
  .mobile-menu__phone,
  .mobile-menu__socials-link {
    min-height: 48px;
    min-width: 48px;
    padding: 14px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  /* Увеличенные области касания для телефонов */
  .phone-number {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  /* Улучшенные поля ввода */
  .form-section__form-input {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px; /* Предотвращает зум на iOS */
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    z-index: 10;
    cursor: text;
    box-sizing: border-box;
  }
  
  .form-section__form-input:focus {
    border-color: #ffffff !important;
    outline: 2px solid #ffffff !important;
    outline-offset: 2px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
  }
  
  /* Улучшенные кнопки */
  .form-section__form-btn {
    background: linear-gradient(135deg, #a4002b 0%, #8b0024 100%) !important;
    border: 2px solid #ffffff !important;
    color: white !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.2s ease;
  }
  
  .form-section__form-btn:hover,
  .form-section__form-btn:focus {
    background: linear-gradient(135deg, #8b0024 0%, #72001e 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
  }
  
  .form-section__form-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Улучшенные ссылки в шапке */
  .header__nav-link,
  .header__nav-btn {
    position: relative;
    overflow: hidden;
  }
  
  .header__nav-link::before,
  .header__nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .header__nav-link:hover::before,
  .header__nav-btn:hover::before {
    left: 100%;
  }
  
  /* Улучшенные социальные ссылки */
  .footer__socials-link {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  
  .footer__socials-link span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
  }
  
  /* Полная ширина для кнопок футера на мобильных */
  .footer__socials {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .footer__socials-link {
    width: 100%;
    justify-content: center;
  }
  
  .footer__socials-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .footer__socials-link:hover::before {
    width: 100%;
    height: 100%;
  }
  
  /* Улучшенные цены */
  .promo-section__price-group {
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .promo-section__price-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Улучшенные элементы списка */
  .cond-section__list-item,
  .price-section__list-item {
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .cond-section__list-item:hover,
  .price-section__list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
}

/* ===== ВЫСОКОЕ РАЗРЕШЕНИЕ (Retina) ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .promo-section__bg {
    background-image: url('../assets/img/bg@2x.jpg');
  }
  
  .form-section__smoke {
    background-image: url('../assets/img/smoke@2x.png');
    right: -200px;
    top: -200px;
    max-width: 800px;
  }
  
  /* .price-section__bg {
    background-image: url('../assets/img/section2-bg@2x.jpg');
  } */
}

/* ===== ПОДДЕРЖКА ТЕМНОЙ ТЕМЫ ===== */
@media (prefers-color-scheme: dark) {
  /* Дополнительные стили для темной темы, если понадобятся */
}

/* ===== ПЛАВНЫЕ ПЕРЕХОДЫ ДЛЯ АВТОСКЕЙЛА ===== */
.wrapper,
.promo-section__heading,
.promo-section__heading div,
.form-section__subheading,
.price-section__list-item-heading,
.promo-section__subheading,
.form-section__form,
.price-section__list-item,
.cond-section__list-item,
.header__nav-link,
.header__nav-btn,
.phone-number {
  transition: all 0.3s ease-in-out;
}

/* ===== ПОДДЕРЖКА УМЕНЬШЕННОГО ДВИЖЕНИЯ ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ПРЕДОТВРАЩЕНИЕ ЗУМА НА iOS ===== */
@media screen and (max-width: 767px) {
  /* Предотвращаем зум при фокусе на полях ввода */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="password"],
  textarea,
  select {
    font-size: 16px !important;
    transform: none !important;
  }
  
  /* Улучшенные стили для полей ввода на мобильных */
  .form-section__form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  .form-section__form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
  }
  
  .form-section__form-input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  }
  
  /* Улучшенные кнопки на мобильных */
  .form-section__form-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #2d5c8a;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .form-section__form-btn:hover,
  .form-section__form-btn:focus {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  .form-section__form-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}

/* ===== УЛУЧШЕННАЯ ПРОИЗВОДИТЕЛЬНОСТЬ НА МОБИЛЬНЫХ ===== */
@media (max-width: 920px) {
  /* Мобильная шапка */
  body .header .wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  body .header .header__wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 60px !important;
    height: 60px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    flex-direction: row !important;
  }
  
  body .header .header__sponsor {
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    order: 1 !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    padding-left: 0 !important;
    height: 60px !important;
    align-self: center !important;
  }
  
  .header__sponsor-text {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    align-self: center !important;
  }
  
  .header__nav {
    display: none !important;
  }
  
  .header__links {
    display: none !important;
  }
  
  body .header .header__burger {
    display: flex !important;
    order: 3 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    margin-left: auto !important;
    margin-right: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: center !important;
  }
  
  .header__burger:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  .header__sponsor-logo {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Оптимизация для GPU */
  .mobile-menu,
  .mobile-menu__nav-link,
  .mobile-menu__phone,
  .mobile-menu__socials-link,
  .header__burger,
  .form-section__form-input,
  .form-section__form-btn {
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Улучшенная прокрутка */
  html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Оптимизация изображений */
  img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  
  /* Улучшенные ссылки */
  a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
  
  /* Улучшенные кнопки */
  button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
