@charset "UTF-8";
/* ============================================================
   B2B — баннер для юрлиц
   ============================================================ */

.b2b {
    margin-top: 110px;
    height: 497px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ten-box-shadow, 0px 4px 136px 0px rgba(12,12,12,.31));
    box-sizing: border-box;

    background:
        linear-gradient(265.55deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.69) 100%),
        var(--b2b-bg, linear-gradient(to left, #050505, #050505));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    padding: 0 70px 58px;
}

/* Внутренний контейнер — прибит к левому низу */
.b2b__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    width: 100%;

}

/* ── Текст ── */
.b2b__text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    
    max-width: 545px;
}

.b2b__title {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-align: left;
    font-family: var(--font-bebas);
    font-size: 50px;
    line-height: 54px;
    font-weight: 700;
    margin: 0;
}

.b2b__subtitle {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-align: left;
    font-family: var(--font-myriad);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

/* ── Карточка ── */
.b2b__card {
    background: rgba(0,0,0,.33);
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,.06);
    padding: 21px 23px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    
    backdrop-filter: blur(8.5px);
    max-width: 603px;
    width: 100%;
}

.b2b__card-info {
    display: flex;
    flex-direction: row;
    gap: 13px;
    align-items: center;
   
}

/* Аватар */
.b2b__avatar {
    flex-shrink: 0;
    width: 61px;
    height: 61px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--ten-box-shadow, 0px 4px 136px 0px rgba(12,12,12,.31));
    aspect-ratio: 1;
}

.b2b__avatar--placeholder {
    background: var(--linii);
    border-radius: 4px;
}

/* Текст карточки */
.b2b__card-text {
    text-align: left;
    font-family: var(--font-bebas);
    font-size: 26px;
    line-height: 29px;
    font-weight: 700;
}

.b2b__card-text-light {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.b2b__card-text-gold {
    background: var(--gradient-zheltyj);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Кнопка */
.b2b__btn {
    background: var(--gradient-zheltyj);
    border-radius: 5px;
    padding: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 233px;
    border: none;
    cursor: pointer;
    font-family: var(--font-bebas);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-black);
    -webkit-text-fill-color: var(--color-black);
    position: relative;
    overflow: hidden;
    transition: transform .15s;
}



.b2b__btn:hover {
    background: linear-gradient(180deg, #C7A21B 0%, #FFDB73 100%);
}


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

@media (max-width: 1440px) {
    .b2b {
        gap: 24px;
        padding: 0 40px 38px;
    }
}

@media (max-width: 1200px) {
  

    .b2b__title {
        font-size: clamp(28px, 3.5vw, 50px);
        line-height: 1.1;
    }

    .b2b__card-text {
     
        font-size: 22px;
        line-height: 25px;
       
    }
}

@media (max-width: 1024px) {
    .b2b {
        height: auto;
        min-height: 400px;
        padding: 40px 30px ;
    }

    .b2b__inner {
        position: relative;
      
        flex-direction: column;
        align-items: center;
      
        gap: 30px;
    }

    .b2b__text {
   
        align-items: center;
     
    }
    
    .b2b__title {
     text-align: center;
    }

    .b2b__subtitle {
        text-align: center;
    }

    .b2b__card-text {
     
        text-align: center;
       
    }
}

@media (max-width: 599px) {
    .b2b__card {
        flex-direction: column;
        width: 100%;
    }

    .b2b__btn {
        width: 100%;
    }

    .b2b__card-info {
     
        flex-direction: column;
      
        align-items: center;
        width: 100%;
    }
 
}

@media (max-width: 480px) {
    .b2b {
       margin-top: 70px;
    }
    .b2b__text {
        gap: 16px;
    }
    .b2b__inner {
        gap: 20px;
    }

    .b2b__avatar {
   
        width: 52px;
        height: 52px;
       
    }

    .b2b__btn {
         width: auto; 
         padding: 15px 17px;
    }
}