/* Основные переменные цветов */
:root {
    --primary-color: #1a73e8; /* Более яркий синий цвет */
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --text-color: #333;
    --light-gray: #f5f5f6;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Сброс стилей по умолчанию */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили страницы */
body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    /* line-height: 1.6; */
	line-height: 1.5;
	font-weight: 400;
    color: var(--text-color);
    /* background-color: var(--white); */
	background-color: var(--light-gray);
    overflow-x: hidden;
    /* Фон с кошкой */
    background-image: url('./images/background-dev.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 500px;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.9);	
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 20px;*/
	padding: 10px 10px;
    background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(2px); /* Легкое размытие фона за контентом */
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);*/
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    border-radius: 5px;	
}

/* Стили шапки страницы */
header {
    position: relative;
    height: 100vh; /* Уменьшенная высота шапки */
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 10px;
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.header-container {
    display: flex;
    height: 115%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}

.header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    z-index: 2;
}

.header-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a237e;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.highlight-text {
    font-size: 1.5rem;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.header-features {
    margin-bottom: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
}

.feature-item-key {
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
}


.feature-item span {
    color: #388e3c;
    font-weight: bold;
    margin-right: 10px;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/background-it.avif');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.header-image-part {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
	margin-top: 0px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 63%;
    /* background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
	background-image: url('./images/mincifri.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(26, 35, 126, 0.6); */
}

.image-text {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
}

.image-text h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.3;
	text-align: center;
}

.image-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.text-highlight {
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.problem-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(143, 11, 11, 0.8);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.problem-item-key {
    font-size: 1.4rem;
	display: flex;
    align-items: center;
    margin-top: 30px;
	margin-bottom: 40px;
    background: rgba(199, 20, 20, 1);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.problem-item:hover {
    background: rgba(211, 20, 20, 1);
    transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.problem-item i {
    color: #ff5252;
    font-size: 1.3rem;
    margin-right: 15px;
    min-width: 20px;
}

.problem-item p {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.5;
}

.solution-text {
    font-size: 2rem !important;
    font-weight: bold;
    margin-top: 30px !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 159, 21, 0.8);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    animation: pulse 2s infinite;
}

.solution-icon {
    margin-right: 15px;
    font-size: 1.5rem;
}


.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0%;
}

.header-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
}

/* Стили для обертки заголовка */
.header-title-wrapper {
    display: flex;
    align-items: center;
	color: var(--primary-color);
    /* gap: 20px; */
    margin-bottom: 0px;
	/* padding-top: 100px; */
}

/* Стили для логотипа в шапке */
.header-logo {
    width: 60px; /* Можно уменьшить для мобильных устройств */
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Стили кнопок в карточках */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
	text-align: center; /* Центрируем текст */
    width: 100%; /* Занимаем всю ширину */
    box-sizing: border-box; /* Учитываем padding в ширине */
    min-height: 60px; /* Фиксированная высота */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили кнопок в шапке страницы */
.cta-button-top {
    display: inline-block;
    padding: 15px 30px;
	margin-right: 190px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
	width: 180px;
}

.cta-button:hover {
    background-color: #3367d6;
    transform: translateY(-3px);
}

/* Стили навигационного меню */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* padding: 15px 0; */
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Стили секций */
section {
    padding: 20px 0;  /* Вертикальные отступы внутри секции */
	margin-bottom: 10px; /* Увеличили расстояние между секциями */
    border-bottom: 1px solid var(--medium-gray);
	/*position: relative;*/
}

section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    /* color: var(--primary-color); */
	color: darkblue;
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: black;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Стили для текста с выравниванием по ширине и красной строкой */
.section-content p {
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 1.5em; /* Красная строка */
    line-height: 1.7;
}

/* Для списков убираем красную строку */
.section-content ul,
.section-content ol {
    text-indent: 0;
    padding-left: 2em;
}

.highlight {
    background-color: rgba(66, 133, 244, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* Стили для подсветки цены */
.price-highlight {
    color: #d32f2f; /* Красный цвет для цены */
    font-weight: bold;
    font-size: 1.2em;
}

.price-amount {
    color: #d32f2f; /* Красный цвет для цифр цены */
    font-weight: bold;
}

/* Стили карточек особенностей */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Стили скриншотов */
.screenshots-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
	margin-bottom: 30px;
}

.screenshot {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Стили шагов установки */
.installation-steps {
    margin-top: 50px;
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Стили карточек цен */
.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 10px;
	align-items: stretch;
}

.pricing-card {
	display: flex; /* Добавляем flex */
    flex-direction: column; /* Колонковая организация */
    height: 100%; /* Занимаем всю высоту */
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 400px;
    transition: var(--transition);
}

/* Контейнер для контента с автоматическим растяжением */
.pricing-card-content {
    flex-grow: 1; /* Растягиваем на всё доступное пространство */
}

.pricing-card-footer {
    margin-top: auto; /* Прижимаем кнопку к низу */
    padding-top: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Со скидкой';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-period {
    font-size: 1rem;
    color: var(--dark-gray);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Стили FAQ */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9e9e9;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 1000px;
}

/* Стили подвала */
footer {
    background-color: var(--light-gray);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Стили кнопки "Наверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #3367d6;
    transform: translateY(-3px);
}

/* Стили для градиентных заголовков */
.gradient-heading {
  background: linear-gradient(90deg, var(--primary-color), transparent);
  padding: 12px 20px;
  margin-bottom: 30px;
  border-radius: 4px 0 0 4px;
  position: relative;
  overflow: hidden;
}

.gradient-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.section-title {
  color: darkblue;
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Стили для блока донатов */
.donation-banner {
  /* background-color: rgba(26, 95, 140, 0.1); */
  /* border-bottom: 1px solid rgba(26, 95, 140, 0.2);*/
  padding: 15px 0;
  /* margin-bottom: 20px;*/
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 20px;*/
	padding: 10px 10px;
    background-color: var(--primary-color);
	backdrop-filter: blur(2px); /* Легкое размытие фона за контентом */
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);*/
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;	
}

.donation-content {
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.donation-text {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  flex-grow: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.donation-button {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background-color: rgba(199, 20, 20, 1);
  color: white !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 10px rgba(255, 79, 79, 0.3); */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  margin-left: 20px;
  white-space: nowrap;
}

.donation-button:hover {
  background-color: rgba(15, 159, 21, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 79, 79, 0.4);
}

.donation-button i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .donation-content {
    flex-direction: column;
    text-align: center;
  }
  
  .donation-text {
    margin-bottom: 15px;
    text-align: center;
  }
  
  .donation-button {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* Адаптивные стили */
@media (max-width: 992px) {
	.header-container {
        flex-direction: column;
    }
    
    .header-text {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .header-image-part {
        padding-left: 0;
        height: 300px;
    }
    
    .image-container {
        height: 100%;
    }	
	
    .header-content h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
	header {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .header-text h1 {
        font-size: 2.2rem;
    }
    
	.header-title-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
	
    .highlight-text {
        font-size: 1.2rem;
    }
    
    .image-text h3 {
        font-size: 1.4rem;
    }
    
    .image-text p {
        font-size: 1rem;
    }
    
    .solution-text {
        font-size: 1.1rem !important;
    }
	
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .step {
        padding-left: 60px;
    }

    .step::before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Анимации */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация пульсации для кнопки */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Стили для блока с кнопкой и счетчиком */
.download-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}

/* Стили для счетчика скачиваний */
.download-counter {
  display: flex;
  align-items: center;
  background-color: rgba(42, 95, 140, 0.1);
  border: 1px solid rgba(42, 95, 140, 0.2);
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.download-counter:hover {
  background-color: rgba(42, 95, 140, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.counter-icon {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 14px;
}

.counter-text {
  margin-right: 5px;
  font-weight: 500;
}

.counter-number {
  font-weight: 700;
  color: var(--primary-color);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .download-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .download-counter {
    padding: 6px 12px;
    font-size: 14px;
  }
}