.zhk-hero {
    position: relative;
    min-height: 1020px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark-950);
    padding-top: 160px;
    padding-bottom: 60px;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.zhk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,10,15,0.92) 0%, rgba(7,10,15,0.7) 40%, rgba(7,10,15,0.25) 65%, rgba(7,10,15,0) 85%),
                linear-gradient(180deg, rgba(7,10,15,0.3) 0%, rgba(7,10,15,0.75) 100%);
}

.zhk-hero__container {
    position: relative;
    z-index: 1;
    align-items: flex-start;
    width: 100%;
}

.zhk-hero__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1;
    margin: 0 0 6px;
}

.zhk-hero__subtitle {
    color: var(--color-gold-500);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.zhk-hero__description {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin: 0 0 32px;
}

/* ===== Иконки-фичи ===== */

.zhk-hero__features {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.zhk-hero__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100px;
    text-align: center;
}

.zhk-hero__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(229, 168, 83, 0.35);
    color: var(--color-gold-500);
}
.zhk-hero__feature-icon svg { width: 22px; height: 22px; }

.zhk-hero__feature-label {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* ===== Кнопки ===== */

.zhk-hero__cta-row {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.zhk-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.zhk-hero__cta svg { width: 18px; height: 18px; }

.zhk-hero__cta--primary {
    background: var(--color-gold-500);
    color: var(--color-dark-950);
}
.zhk-hero__cta--primary:hover {
    box-shadow: var(--shadow-glow);
}

.zhk-hero__cta--secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}
.zhk-hero__cta--secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* ===== Полоса статистики ===== */

.zhk-hero__stats {
    display: flex;
    width: 100%;
    border-radius: 16px;
    padding: 24px 0;
    margin-bottom: 16px;
}

.zhk-hero__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.zhk-hero__stat:last-child {
    border-right: none;
}

.zhk-hero__stat-value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 26px;
    color: #fff;
}
.zhk-hero__stat-value--accent {
    color: var(--color-gold-500);
    font-size: 20px;
}
.zhk-hero__stat-prefix {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}
.zhk-hero__stat-unit {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.zhk-hero__stat-label {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ===== Рейтинг ===== */

.zhk-hero__rating {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-radius: 16px;
    padding: 22px 28px;
}

.zhk-hero__rating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-gold-500);
    flex-shrink: 0;
}
.zhk-hero__rating-icon svg { width: 34px; height: 34px; }

.zhk-hero__rating-body {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.zhk-hero__rating-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-gold-500);
}
.zhk-hero__rating-value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 34px;
    color: #fff;
}
.zhk-hero__rating-max {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
}

.zhk-hero__rating-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.zhk-hero__rating-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold-500);
    font-weight: 600;
    text-decoration: none;
}
.zhk-hero__rating-link svg { width: 14px; height: 14px; }

/* ===== Адаптив ===== */

@media (max-width: 1199px) {
    .zhk-hero__stats {
        flex-wrap: wrap;
    }
    .zhk-hero__stat {
        flex: 1 1 50%;
        border-right: none;
        margin-bottom: 16px;
    }
    .zhk-hero__rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .zhk-hero__rating-body {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .zhk-hero {
        padding-top: 130px;
        align-items: flex-end;
    }
    .zhk-hero__cta-row {
        flex-direction: column;
    }
    .zhk-hero__cta {
        width: 100%;
        justify-content: center;
    }
    .zhk-hero__stat {
        flex: 1 1 100%;
    }
}