
/* --- СЕКЦИЯ --- */
.buyer-hero {
    background: var(--bg);
    font-family: var(--font);
    color: var(--blue2);
    padding: 36px 16px 56px;
    margin-bottom: 70px;
}

.buyer-hero__inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.buyer-hero__content {
    display: grid;
    gap: 16px;
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
}

.buyer-hero__content p {
    margin-top: 0;
}

.buyer-hero__content a {
    color: var(--red)
}


.buyer-hero__content ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.buyer-hero__content ul li {
    display: flex;
    width: calc(33% - 20px);
    flex-direction: column;
    gap: 20px;
}

.buyer-hero__content ul li img {
    display: block;
}

.buyer-hero__hello {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    color: var(--black);
}

.buyer-hero__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.35;
}

.buyer-hero__link {
    color: var(--red);
    text-decoration: none;
    position: relative;
}
.buyer-hero__link:hover { color: var(--red-darck); }
.buyer-hero__link::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-2px;
    height:1px;
    background: currentColor;
    opacity:.4;
}

.buyer-hero__text {
    margin: 6px 0 0;
    color: var(--black);
    line-height: 1.6;
}

.buyer-hero__subtitle {
    margin: 10px 0 0;
    font-weight: 600;
    color: var(--black);
}

/* --- Фичи --- */
.buyer-hero__features {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.buyer-hero__feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-height: 84px;
}

.buyer-hero__icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grey-soft);
    color: var(--blue2);
}

.buyer-hero__feature-title {
    font-weight: 600;
    line-height: 1.35;
}

/* --- Фото --- */
.buyer-hero__photo {
    display: block;
    margin: 0;
    justify-self: end;
    position: relative;
    max-height: 438px;
    overflow: hidden;
    border-radius: 40px;
}
.buyer-hero__photo img{
    object-fit: cover;
    position: relative;
}

/* --- Адаптив --- */
@media (max-width: 1024px){
    .buyer-hero__inner{
        grid-template-columns: 1fr;
    }
    .buyer-hero__photo{
        justify-self: start;
        order: 2;
    }
    .buyer-hero__features{
        grid-template-columns: 1fr;
    }
}


/* CTA */
.cta{
    background: var(--red-darck);
    border-radius:  40px;
    padding: 20px 40px;
    color:#fff;
    font-family: var(--font);
    margin-bottom: 120px
}
.cta__inner{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
}
.cta__text{
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;

}
.cta__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: color-mix(in srgb, #fff 24%, var(--red-darck));
    /* если нет поддержки color-mix: background: rgba(255,255,255,.24); */
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
}
.cta__btn:hover{ transform: translateY(-1px); }
.cta__btn:active{ transform: translateY(0); }

@media (max-width: 760px){
    .cta__inner{
        grid-template-columns: 1fr;
        text-align: left;         /* можно поставить center, если нужно */
    }
    .cta__btn{
        justify-self: start;      /* или center — по желанию */
        height: 48px;
        padding: 0 22px;
    }
}
