/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 0;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Фоновое изображение */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.png') no-repeat center center / cover;
    z-index: 0;
}

/* Затемнение поверх фото для читаемости текста */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 15, 36, 0.88) 0%,
        rgba(10, 15, 36, 0.75) 35%,
        rgba(10, 15, 36, 0.3) 65%,
        rgba(10, 15, 36, 0.1) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 80px;
    max-width: 650px;
    margin-left: max(24px, calc((100% - var(--container-width)) / 2 + 24px));
    margin-right: auto;
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Заголовок */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title span {
    color: #6EB3FF;
}

/* Описание */
.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 480px;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(54, 112, 226, 0.4);
}

.hero-buttons .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}
