/* ====== БЛОК С БОЛЬШИМИ ДЕНЬГАМИ ====== */
.big-money-section {
  padding: 120px 20px 60px;
  margin-top: -80px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  z-index: 2;
}

.big-money-section .container {
  padding-left: 40px;
  padding-right: 40px;
}

.big-money-section .container {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.big-money-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(40px, 7vw, 72px);
  color: #000000;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.big-money-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(18px, 3vw, 28px);
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

.big-money-container {
  position: relative;
  max-width: 1600px; /* Увеличиваем контейнер для большего фона */
  margin: 0 auto; /* Центрируем контейнер */
  padding: 0; /* Убираем padding для центрирования */
  display: flex;
  align-items: center;
  justify-content: center; /* Центрируем фон */
  box-sizing: border-box;
}

.big-money-bg {
  width: 100%;
  max-width: 1200px; /* Уменьшаем фон, но оставляем по центру */
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  margin-left: auto;
  margin-right: auto; /* Центрируем фон */
}

/* Мобильный фон скрыт по умолчанию */
.big-money-bg-mobile {
  display: none;
}


.money-image {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%) translateY(50px) scale(0.9);
  width: 35%;
  max-width: 450px;
  height: auto;
  z-index: 3;
  opacity: 0;
  filter: blur(5px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.money-image.visible {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
  filter: blur(0);
  animation: moneyFloat 3s ease-in-out infinite;
}

/* Анимация плавания денег */
@keyframes moneyFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.02);
  }
}

/* Адаптив */
@media (max-width: 1440px) {
  .money-image {
    width: 32%;
    max-width: 400px;
    left: 27%;
  }
}

@media (max-width: 1100px) {
  .big-money-section {
    padding: 100px 20px;
  }
  .big-money-section .container {
    margin-bottom: 60px;
  }
  .money-image {
    width: 38%;
    max-width: 380px;
    left: 25%;
  }
}

@media (max-width: 768px) {
  .big-money-section {
    padding: 60px 20px 40px;
    overflow-x: hidden;
  }

  .big-money-section .container {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .big-money-container {
    padding: 0 20px 0 20px !important;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    overflow: visible; /* Позволяем картинке выходить за рамки */
  }
  
  /* Скрываем десктопный фон на мобильных */
  .big-money-bg-desktop {
    display: none !important;
  }

  /* Показываем мобильный фон */
  .big-money-bg-mobile {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain;
    object-position: center center;
  }

  .big-money-title {
    font-size: clamp(28px, 7vw, 56px);
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .big-money-text {
    font-size: clamp(16px, 3vw, 24px);
    line-height: 1.5;
  }

  /* Картинка денег по центру для квадратного фона - больше и выше */
  .money-image {
    width: 65%;
    max-width: 350px;
    left: 50%;
    top: 32%;
    transform: translate(-50%, -50%) translateY(50px) scale(0.9);
  }

  .money-image.visible {
    transform: translate(-50%, -50%) translateY(0) scale(1);
    animation: moneyFloatMobile 3s ease-in-out infinite;
  }
}

/* Анимация плавания денег для мобильной версии */
@keyframes moneyFloatMobile {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.02);
  }

@media (max-width: 480px) {
  .big-money-section {
    padding: 40px 20px 30px;
    overflow-x: hidden;
  }

  .big-money-section .container {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .big-money-container {
    padding: 0 20px 0 15px !important;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    overflow: visible; /* Позволяем картинке выходить за рамки */
  }
  
  /* Скрываем десктопный фон на мобильных */
  .big-money-bg-desktop {
    display: none !important;
  }

  /* Показываем мобильный фон */
  .big-money-bg-mobile {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain;
    object-position: center center;
  }

  .big-money-title {
    font-size: clamp(24px, 7vw, 48px);
    margin-bottom: 15px;
  }

  .big-money-text {
    font-size: clamp(14px, 3vw, 20px);
  }

  /* Картинка денег по центру для квадратного фона - больше и выше */
  .money-image {
    width: 70%;
    max-width: 300px;
    left: 50%;
    top: 29%;
    transform: translate(-50%, -50%) translateY(50px) scale(0.9);
  }

  .money-image.visible {
    transform: translate(-50%, -50%) translateY(0) scale(1);
    animation: moneyFloatMobile 3s ease-in-out infinite;
  }
}

@media (max-width: 360px) {
  .big-money-section {
    padding: 40px 15px 30px;
    overflow-x: hidden;
  }
  
  .big-money-container {
    padding: 0 15px 0 15px !important;
    overflow: visible; /* Позволяем картинке выходить за рамки */
  }
  
  /* Скрываем десктопный фон на мобильных */
  .big-money-bg-desktop {
    display: none !important;
  }

  /* Показываем мобильный фон */
  .big-money-bg-mobile {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain;
    object-position: center center;
  }
  
  /* Картинка денег по центру для квадратного фона - больше и выше */
  .money-image {
    width: 75%;
    max-width: 250px;
    left: 50%;
    top: 27%;
    transform: translate(-50%, -50%) translateY(50px) scale(0.9);
  }

  .money-image.visible {
    transform: translate(-50%, -50%) translateY(0) scale(1);
    animation: moneyFloatMobile 3s ease-in-out infinite;
  }
}

/* Старая версия (отключена) */
@media (max-width: 1px) {
  .big-money-section {
    padding: 80px 20px;
  }
  .big-money-section .container {
    margin-bottom: 40px;
  }
  .money-image {
    width: 48%;
    max-width: 350px;
    left: 23%;
  }
}

