.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}

.hero-main-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-text h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-main-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-digest-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.btn-accent {
    display: inline-block;
    background-color: var(--color-danger);
    color: var(--color-white);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #a00000;
}

.digest-note,
.digest-note p {
    font-size: 13px;
    /* Тот самый шрифт */
    line-height: 1.4;
    opacity: 0.85;
    text-align: left;
    max-width: 250px;
    margin-bottom: 2px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.feature-desc {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.8;
}

/* Планшеты */
@media (max-width: 1100px) {
    .hero-main-text h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-main-text p {
        font-size: 16px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-wrapper {
        gap: 40px;
    }
}

/* Мобильные телефоны */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .hero-main-text h1 {
        font-size: 32px;
    }

    .hero-main-text p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-digest-action {
        flex-direction: column;
        gap: 16px;
    }

    .btn-accent {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .digest-note,
    .digest-note p {
        text-align: center;
        max-width: 100%;
        font-size: 13px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 18px;
    }
}