/* =============================================
   ЛЕНДИНГ: БАНКРОТСТВО ФИЗИЧЕСКИХ ЛИЦ
   ============================================= */

/* HERO */
.bk-hero {
    padding: 80px 40px;
}
.bc-bk {
    display: flex;
    padding: 0 0 40px;
    max-width: 1640px;
    margin: 0 auto;
}
.bk-hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    min-height: 380px;
    max-width: 1640px;
    margin: 0 auto;
    justify-content: space-between;
}

.bk-hero__left {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 840px;
}

.bk-hero__title {
    font-family: var(--h1-font-family);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--h1-line-height);
    text-transform: uppercase;
}

.bk-hero__title-main { color: var(--main); }
.bk-hero__title-accent { color: var(--accent); }

.bk-hero__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: var(--text);
    max-width: 667px;
}

.bk-hero__btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    border-radius: 10px;
    padding: 16px 30px 18px;
    font-family: var(--button-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    color: var(--white);
    text-decoration: none;
    transition: background .2s, transform .15s;
    align-self: flex-start;
}

.bk-hero__btn:hover { background: #c00b16; transform: translateY(-1px); opacity: 1; }

/* Карточка справа */
.bk-hero__card {
    background: var(--acctnt2);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 660px;
}

.bk-hero__card-title {
    font-family: var(--h3-font-family);
    font-size: 36px;
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--white);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.bk-hero__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-hero__item {
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: flex-start;
}

.bk-hero__item-icon { flex-shrink: 0; padding-top: 4px; }

.bk-hero__item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bk-hero__item-label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--border);
}

.bk-hero__item-val {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    color: var(--white);
}

/* Адаптив */
@media (max-width: 1440px) {
    .bk-hero__card {
        flex: 0 0 390px;
    }
}
@media (max-width: 1200px) {
    .bk-hero__inner { gap: 40px; }
    .bk-hero__card { flex: 0 0 460px; }
    .bk-hero__title { font-size: 48px; }
}

@media (max-width: 1024px) {
    .bk-hero {
        padding: 60px 40px;
    }
    .bk-hero__inner { flex-direction: column;     align-items: flex-start;}
    .bk-hero__card { flex: none; width: 100%; }
    .bk-hero__title { font-size: 40px; }
}

@media (max-width: 640px) {
    .bk-hero { padding: 16px 16px 40px; }

    .bk-hero__desc { font-size: 17px; }
    .bk-hero__card-title { font-size: 26px; }
    .bk-hero__item-val { font-size: 19px; }
    .bk-hero__btn { width: 100%; justify-content: center; }
}

/* =============================================
   СЕКЦИЯ: ИНТРО
   ============================================= */
.bk-intro {
    background: var(--fon);
    padding: 100px 40px;
    display: flex;
    
}

.intro-wrap{
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1640px;
    margin: 0 auto;
    width: 100%;
}



.bk-intro__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 0 740px;
}

.bk-intro__right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.bk-intro__title {
    font-family: var(--h3-font-family);
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--main);
}

.bk-intro__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: var(--text);
    max-width: 667px;
}

/* Сетка долгов */
.bk-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bk-intro__item {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.bk-intro__item--note {
    background: transparent;
    border: 1px dashed var(--border);
    align-items: flex-start;
}

.bk-intro__item--note :last-child{
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--border);
}

.bk-intro__item-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.bk-intro__item span {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 130%;
    color: var(--main);
}

/* Причины */
.bk-intro__reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bk-intro__reason {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 16px;
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: center;
    box-shadow: -4px 0px 0px 0px rgba(226, 13, 26, 1);
}

.bk-intro__reason-num {
    background: rgba(226, 13, 26, 0.14);
    border-radius: 37px;
    padding: 2px 13px;
    flex-shrink: 0;
}

.bk-intro__reason-num span {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    color: var(--accent);
}

.bk-intro__reason-text {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: var(--text);
    flex: 1;
}

/* Адаптив */
@media (max-width: 1400px) {
    .bk-intro { gap: 60px; }
    .bk-intro__left { flex: 0 0 560px; }
}

@media (max-width: 1200px) {
    .bk-intro { padding: 60px 40px; }
    .intro-wrap { flex-direction: column; gap: 48px;  }
    .bk-intro__left { flex: none; width: 100%; }
}

@media (max-width: 640px) {
    .bk-intro { padding: 48px 16px; }
    .bk-intro__title { font-size: 28px; }
    .bk-intro__desc { font-size: 18px; }
    .bk-intro__grid { grid-template-columns: 1fr; }
    .bk-intro__item span { font-size: 18px; }
    .bk-intro__reason { gap: 20px; padding: 24px 16px; }
    .bk-intro__reason-text { font-size: 17px; }
}

/* =============================================
   СЕКЦИЯ: ПРЕИМУЩЕСТВА
   ============================================= */
.bk-adv {
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.bk-adv__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.bk-adv__title {
    font-family: var(--h2-font-family);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
    text-transform: uppercase;
    color: var(--main);
}

.bk-adv__line {
    width: 64px; height: 4px;
    background: var(--accent); border-radius: 2px;
}

.bk-adv__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 500;
    line-height: 140%; color: var(--text);
    text-align: center;
}

.bk-adv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}

.bk-adv__card {
    background: var(--fon);
    border-radius: 20px;
    padding: 30px 40px 40px 37px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bk-adv__icon {
    background: var(--white);
    border-radius: 10px;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-adv__card-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bk-adv__card-title {
    font-family: var(--h3-font-family);
    font-size: 36px;
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--main);
}

.bk-adv__card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    color: var(--text);
}

/* Адаптив */
@media (max-width: 1200px) {
    .calc--bkr {
        margin-bottom: 100px;
     }
    .bk-adv { padding: 60px 40px; }
    .bk-adv__card-title { font-size: 28px; }
}

@media (max-width: 900px) {
    .bk-adv__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .bk-adv { padding: 60px 16px; }
    .bk-adv__title { font-size: 28px; }
    .bk-adv__desc { font-size: 18px; }
    .bk-adv__card-title { font-size: 26px; }
    .bk-adv__card-desc { font-size: 16px; }
    .bk-adv__card { padding: 20px 24px; gap: 16px;}
    .bk-adv__card-body { gap: 16px;}
    .calc--bkr {
        margin-bottom: 60px;
     }
}


.calc--bkr {
    margin-bottom: 150px;
 }
 
/* =============================================
   СЕКЦИЯ: СТОИМОСТЬ
   ============================================= */
.bk-price {
    background: var(--fon);
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.bk-price__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    max-width: 960px;
}

.bk-price__title {
    font-family: var(--h2-font-family);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
    text-transform: uppercase;
    color: var(--main);
}

.bk-price__line {
    width: 64px; height: 4px;
    background: var(--accent); border-radius: 2px;
}

.bk-price__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 500;
    line-height: 140%; color: var(--text);
}

/* Карточка */
.bk-price__card {
    background: var(--white);
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1260px;
    overflow: hidden;
}

/* Левая тёмная часть */
.bk-price__left {
    background: var(--acctnt2);
    border-radius: 30px 0 0 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    flex: 0 0 420px;
}

.bk-price__name {
    font-family: var(--h3-font-family);
    font-size: 36px;
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--white);
}

.bk-price__sub {
    font-family: 'Manrope', sans-serif;
    font-size: 20px; font-weight: 500;
    line-height: 140%; color: var(--border);
    margin-top: 10px;
}

.bk-price__cost { display: flex; flex-direction: column; gap: 10px; }

.bk-price__cost-label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px; font-weight: 600;
    color: var(--border);
}

.bk-price__cost-val {
    font-family: var(--h2-font-family);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    text-transform: uppercase;
    color: var(--accent);
}

.bk-price__installment {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.bk-price__installment span {
    font-family: 'Manrope', sans-serif;
    font-size: 18px; font-weight: 600;
    color: var(--border);
}

.bk-price__btn {
    background: var(--accent);
    border-radius: 10px;
    padding: 16px 30px 18px;
    font-family: var(--button-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    transition: background .2s;
    display: block;
}

.bk-price__btn:hover { background: #c00b16; opacity: 1; }

/* Правая часть */
.bk-price__right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.bk-price__includes-title {
    font-family: var(--h3-font-family);
    font-size: 36px;
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--main);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.bk-price__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.bk-price__item-icon { flex-shrink: 0; padding-top: 2px; }

.bk-price__item-text { display: flex; flex-direction: column; gap: 6px; }

.bk-price__item-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px; font-weight: 500;
    line-height: 140%; color: var(--main);
}

.bk-price__item-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px; font-weight: 600;
    line-height: 120%; color: var(--text);
}

/* Адаптив */
@media (max-width: 1200px) {
    .bk-price { padding: 60px 40px; }
    .bk-price__left { flex: 0 0 340px; padding: 40px; }
    .bk-price__cost-val { font-size: 38px; }
}

@media (max-width: 900px) {
    .bk-price__card { flex-direction: column; }
    .bk-price__left { flex: none; border-radius: 30px 30px 0 0; }
    .bk-price__right { padding: 40px; }
}

@media (max-width: 640px) {
    .bk-price { padding: 48px 20px; }
    .bk-price__title { font-size: 28px; }
    .bk-price__left { padding: 28px 24px; }
    .bk-price__right { padding: 28px 24px; }
    .bk-price__name { font-size: 26px; }
    .bk-price__cost-val { font-size: 32px; }
    .bk-price__includes-title { font-size: 26px; }
}

/* =============================================
   СЕКЦИЯ: РЕЗУЛЬТАТ
   ============================================= */
.bk-result {
    background: var(--acctnt2);
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.bk-result__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.bk-result__title {
    font-family: var(--h2-font-family);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
}

.bk-result__line {
    width: 64px; height: 4px;
    background: var(--accent); border-radius: 2px;
}

.bk-result__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}

.bk-result__item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background .2s;
}

.bk-result__item:hover { background: rgba(255,255,255,0.08); }

.bk-result__num {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--accent);
    opacity: 0.6;
    line-height: 1;
}

.bk-result__text {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    color: var(--white);
}

/* Адаптив */
@media (max-width: 1200px) {
    .bk-result { padding: 60px 40px; }
    .bk-result__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .bk-result { padding: 48px 20px; }
    .bk-result__title { font-size: 28px; }
    .bk-result__grid { grid-template-columns: 1fr; }
}
