.market-stats {
    padding: 0rem 0;
    color: #DFF7FF;
    font-family: var(--font-sb-sans);
    font-weight: 500;
  }
  
  .stats-column {
    margin-bottom: 3rem;
  }
  
  .stats-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DFF7FF;
  }
  
  .stats-bars {
    width: 100%;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 25px;
  }
  
  .bar-container {
    position: relative;
    height: 25px; 
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px; /* Уменьшен радиус в соответствии с высотой */
    overflow: visible;
  }
  
  .year {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    color: #DFF7FF;
  }
  
  .bar {
    height: 100%;
    background: #007bff;
    border-radius: 15px; /* Уменьшен радиус в соответствии с высотой */
    position: relative;
    opacity: 0.85; /* Добавлена небольшая прозрачность */
  }
  
  .value {
    position: absolute;
    right: 0;
    top: -25px;
    color: #DFF7FF;
    font-weight: bold;
  }
  
  @media (min-width: 768px) {
    .market-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8rem;
      font-family: var(--font-sb-sans);
      font-weight: 500;
    }
  }
  
  /* Animation for bars */
  @keyframes growBar {
    from {
      width: 0;
    }
    to {
      width: var(--target-width);
    }
  }
  
  /* Убрана общая анимация и добавлены конкретные ширины */
  .stats-column:first-child .bar {
    background: #007bff;
  }
  
  .stats-column:last-child .bar {
    background: #007bff;
  }

  .growth-card {
    background: rgb(80 132 255 / 4%);
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .growth-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }  
  
  .growth-card .growth-title {
    font-size: 3rem;
    font-weight: 700;
    color: #DFF7FF;
    margin-bottom: 20px;
  }
  
  .growth-card .growth-text {
    font-size: 2rem;
    color: #DFF7FF;
    line-height: 1.4;
    font-family: var(--font-sb-sans);
    font-weight: 500;
  }

/* Большие телефоны и планшеты */
@media (max-width: 768px) {
  .growth-card .growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DFF7FF;
    margin-bottom: 20px;
  }
  
  .growth-card .growth-text {
    font-size: 1.5rem;
    color: #DFF7FF;
    line-height: 1.4;
    font-family: var(--font-sb-sans);
    font-weight: 500;
  }
}

/* обычные телефоны */
@media (max-width: 576px) {
  .growth-card .growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DFF7FF;
    margin-bottom: 20px;
  }
  
  .growth-card .growth-text {
    font-size: 1.5rem;
    color: #DFF7FF;
    line-height: 1.4;
    font-family: var(--font-sb-sans);
    font-weight: 500;
  }
}

/* очень маленькие телефоны */
@media (max-width: 376px) {
  .growth-card .growth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #DFF7FF;
    margin-bottom: 20px;
  }
  
  .growth-card .growth-text {
    font-size: 1.3rem;
    color: #DFF7FF;
    line-height: 1.4;
    font-family: var(--font-sb-sans);
    font-weight: 500;
  }
}