/*** HEAD CONTENT ***/
section.head_content {
    padding: 24px 0 32px;
}

.head_content_row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.head_content_wrap {
    flex: 1;
    min-width: 280px;
    margin: 0 10px;
}

.head_content_title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

.head_content_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--wh-80);
    max-width: 560px;
}

.head_content_offer {
    position: relative;
    margin-top: 24px;
}

.head_content_offer_label {
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--head-accent, var(--ye));
    background: var(--bg-gray);
    padding: 2px 8px;
    border-radius: 4px;
}

.head_content_params {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    background: var(--bg-gray);
    border: 1px solid var(--gray);
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 4px solid var(--head-accent, var(--ye));
}

.head_content_trust {
    width: 100%;
    flex: 0 0 100%;
    font-size: 0.8125rem;
    color: var(--head-accent, var(--ye));
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.head_content_bonus_text {
    flex: 1;
    min-width: 200px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--wh);
}

.head_content_buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

a.bonus_text_any_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.bonus_text_any_btn:hover {
    box-shadow: var(--hover-darken);
    transform: translateY(-1px);
}

a.bonus_text_any_btn.head_cta_primary {
    padding: 16px 36px;
    font-size: 1.05rem;
}

a.bonus_text_any_btn.head_cta_secondary {
    padding: 14px 24px;
}

a.bonus_text_any_btn img {
    height: 18px;
    width: auto;
    margin-left: 8px;
}

.head_content_img {
    width: 400px;
    max-width: 100%;
    margin-left: 20px;
    flex-shrink: 0;
}

.head_content_img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .head_content_row {
        flex-direction: column;
    }

    .head_content_wrap {
        margin: 0 10px;
        width: 100%;
    }

    .head_content_offer_label {
        font-size: 0.65rem;
    }

    .head_content_params {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .head_content_buttons {
        flex-wrap: wrap;
        flex-direction: column;
    }

    a.bonus_text_any_btn {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    a.bonus_text_any_btn.head_cta_secondary {
        margin-top: 8px;
    }

    .head_content_img {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }
}

/*** END HEAD CONTENT ***/
