/* --------------------------------------
   HERO SECTION — новый фон, лаконичные шрифты
---------------------------------------- */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background-image: 
        linear-gradient(90deg, rgba(245, 247, 250, 0.96) 0%, rgba(245, 247, 250, 0) 65%),
        url('https://prom-digital.ru/wp-content/uploads/2026/04/1b027d92f8011f1ade0caff9743e0b8_1.jpeg');
    background-size: cover, cover;
    background-position: center, center 30%;
    background-repeat: no-repeat, no-repeat;
}

.hero .hero-inner {
    padding: 50px 32px 70px;  /* уменьшил вертикальные отступы */
}

.hero-content {
    width: 60%;               /* уже, чем было 70% */
    max-width: 60%;
}

/* Лаконичные шрифты */
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
}
.hero-highlight {
    font-size: 18px;
    margin-bottom: 6px;
}
.usp-list li {
    font-size: 15px;
    margin-bottom: 10px;
}
.hero-buttons {
    margin-bottom: 28px;
    gap: 14px;
}
.btn-primary, .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
}
.hero-trust {
    gap: 20px;
    font-size: 13px;
    padding-top: 20px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero .hero-inner {
        padding: 40px 24px 60px;
    }
    .hero-content {
        width: 75%;
        max-width: 75%;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero {
        background-image: 
            linear-gradient(90deg, rgba(245, 247, 250, 0.96) 0%, rgba(245, 247, 250, 0) 80%),
            url('https://prom-digital.ru/wp-content/uploads/2026/04/1b027d92f8011f1ade0caff9743e0b8_1.jpeg');
    }
}
@media (max-width: 768px) {
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero {
        background-image: none;
        background-color: #f5f7fa;
    }
}
@media (max-width: 640px) {
    .hero .hero-inner {
        padding: 30px 20px 50px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
}