.bc {
    --bc-blue: #365eba;
    --bc-blue-dark: #2a4a96;
    --bc-orange: #f76c16;
    --bc-text: #1a2845;
    --bc-text-2: #5a6478;
    --bc-text-3: #8a93a3;
    --bc-bg: #f7f8fa;
    --bc-bg-soft: #f0f3f8;
    --bc-border: #e5e9ef;
    --bc-border-soft: #eef0f4;

    color: var(--bc-text);
    line-height: 1.5;
}

.bc * { box-sizing: border-box; }
.bc {
    background: #f7f8fa;
    padding: 40px 0 0 0;
}

nav.bc-breadcrumbs {
    font-size: 14px;
    color: #555;
}
nav.bc-breadcrumbs a {
    text-decoration: none;
}
/* HERO (catalog) */
.bc-hero { padding: 32px 0 40px; }
.bc-hero__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; color: var(--bc-text); }
.bc-hero__title em { color: var(--bc-orange); font-style: normal; }
.bc-hero__lead { font-size: 16px; color: #333; max-width: 100%; line-height: 1.45; margin: 0; }
.bc-hero__stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.bc-hero__stat-num { font-size: 28px; font-weight: 800; color: var(--bc-blue); line-height: 1; font-variant-numeric: tabular-nums; }
.bc-hero__stat-label { font-size: 12px; color: var(--bc-text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* SECTION */
.bc-section { padding: 32px 0; }
.bc-section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.bc-section__title { font-size: 22px; font-weight: 700; color: var(--bc-text); letter-spacing: -0.01em; margin: 0; }
.bc-section__hint { font-size: 13px; color: var(--bc-text-3); }

/* TOOLBAR */
.bc-toolbar { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 16px; margin-bottom: 20px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.bc-search { position: relative; flex: 1; min-width: 200px; }
.bc-search__input { width: 100%; padding: 10px 14px 10px 36px; border: 1px solid var(--bc-border); border-radius: 8px; font-size: 14px; font-family: inherit; background: var(--bc-bg); transition: all 0.15s; }
.bc-search__input:focus { outline: none; border-color: var(--bc-blue); background: #fff; }
.bc-search__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--bc-text-3); pointer-events: none; }
.bc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.bc-chip { padding: 7px 12px; background: var(--bc-bg); border: 1px solid var(--bc-border); border-radius: 6px; font-size: 14px; font-weight: 400; color: var(--bc-text-2); cursor: pointer; transition: all 0.15s; text-decoration: none; }
.bc-chip:hover { background: var(--bc-bg-soft); color: var(--bc-text); }
.bc-chip.is-active { background: var(--bc-blue); border-color: var(--bc-blue); color: white; }
.bc-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--bc-text-2); }
.bc-sort__select { padding: 8px 12px; border: 1px solid var(--bc-border); border-radius: 6px; font-size: 14px; background: var(--bc-bg); font-family: inherit; color: var(--bc-text); cursor: pointer; }

/* GRID */
.bc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 992px) { .bc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .bc-grid { grid-template-columns: repeat(2, 1fr); } .bc { background: #f7f8fa; padding: 15px 0 0 0; }.bc-section { padding: 10px 0; }  }
@media (max-width: 480px) { .bc-grid { grid-template-columns: 1fr; } }

/* CARD */
.bc-card { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 20px; transition: all 0.2s ease; cursor: pointer; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; text-decoration: none; color: inherit; }
.bc-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,40,69,0.08); border-color: var(--bc-blue); }
.bc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--bc-blue), var(--bc-orange)); opacity: 0; transition: opacity 0.2s; }
.bc-card:hover::before { opacity: 1; }
.bc-card__head { display: flex; align-items: center; gap: 12px; }
.bc-card__logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: #fff; padding: 4px; border: 1px solid var(--bc-border-soft); }
.bc-card__logo-fallback { width: 44px; height: 44px; border-radius: 10px; background: var(--bc-blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.bc-card__name { font-size: 16px; font-weight: 500; color: var(--bc-text); line-height: 1.2; }
.bc-card__year { font-size: 11px; color: var(--bc-text-3); margin-top: 2px; }
.bc-card__assets, .bc-card__rating { background: var(--bc-bg-soft); padding: 8px 12px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bc-card__assets-label, .bc-card__rating-label { color: var(--bc-text-3); text-transform: uppercase; letter-spacing: 0; }
.bc-card__assets-val { font-weight: 700; color: var(--bc-text); font-variant-numeric: tabular-nums; }
.bc-card__more { margin-top: auto; font-size: 12px; color: var(--bc-blue); font-weight: 400; padding-top: 8px; border-top: 1px solid var(--bc-border-soft); }

/* RATING BADGE */
.bc-rating { display: inline-block; padding: 3px 8px; border-radius: 4px; font-weight: 700; font-size: 11px; letter-spacing: 0.3px; }
.bc-rating--a-plus { background: #d1fae5; color: #065f46; }
.bc-rating--a { background: #dbeafe; color: #1e40af; }
.bc-rating--b-plus { background: #fef3c7; color: #92400e; }
.bc-rating--b { background: #fed7aa; color: #9a3412; }
.bc-rating--c { background: #fecaca; color: #991b1b; }

/* EMPTY */
.bc-empty { text-align: center; padding: 40px 20px; color: var(--bc-text-3); }

/* RELIABILITY TABLE */
.bc-reliability { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 24px; }
.bc-table-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
.bc-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 500px; }
.bc-table th { text-align: left; font-weight: 600; font-size: 11px; color: var(--bc-text-3); text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 16px 12px 0; border-bottom: 2px solid var(--bc-border); white-space: nowrap; }
.bc-table td { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--bc-border-soft); font-variant-numeric: tabular-nums; }
.bc-table tr:hover td { background: var(--bc-bg-soft); }
.bc-table__num { font-weight: 700; color: var(--bc-text-3); }
.bc-table__bank { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.bc-table__bank:hover .bc-table__name { color: var(--bc-blue); }
.bc-table__logo { width: 28px; height: 28px; object-fit: contain; border-radius: 5px; background: #fff; padding: 2px; border: 1px solid var(--bc-border-soft); }
.bc-table__logo-fallback { width: 28px; height: 28px; border-radius: 6px; background: var(--bc-blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; flex-shrink: 0; }
.bc-table__name { font-weight: 500; color: var(--bc-text); }

/* TOOLS */
.bc-tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) { .bc-tools { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bc-tools { grid-template-columns: 1fr; } }
.bc-tool { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 24px; text-decoration: none; color: inherit; transition: all 0.2s; display: flex; flex-direction: column; gap: 12px; }
.bc-tool:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,40,69,0.08); }
.bc-tool__icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--bc-blue), var(--bc-blue-dark)); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.bc-tool--orange .bc-tool__icon { background: linear-gradient(135deg, var(--bc-orange), #d05a10); }
.bc-tool__title { font-size: 16px; font-weight: 500; color: var(--bc-text); line-height: 1.3; }
.bc-tool__desc { font-size: 14px; color: #555; line-height: 1.45; }
.bc-tool__arrow { margin-top: auto; color: var(--bc-blue); font-weight: 400; font-size: 12px; transition: padding-left 0.2s; }
.bc-tool:hover .bc-tool__arrow { padding-left: 4px; }

/* NEWS (catalog) */
.bc-news { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 992px) { .bc-news { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bc-news { grid-template-columns: 1fr; } }
.bc-news__card { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all 0.2s; }
.bc-news__card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,40,69,0.08); }
.bc-news__img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bc-bg-soft); }
.bc-news__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bc-news__bank-tag { position: absolute; left: 8px; bottom: 8px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); padding: 4px 10px 4px 6px; border-radius: 5px; font-size: 11px; font-weight: 600; color: var(--bc-text); display: flex; align-items: center; gap: 6px; max-width: calc(100% - 16px); }
.bc-news__bank-icon { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.bc-news__content { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-news__title { font-size: 16px; font-weight: 500; line-height: 1.35; color: var(--bc-text); flex: 1; }
.bc-news__date { font-size: 11px; color: var(--bc-text-3); }
.bc-news__more-wrap { margin-top: 24px; text-align: center; }
.bc-news__more { display: inline-block; padding: 10px 20px; border: 1px solid var(--bc-blue); color: var(--bc-blue); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.15s; }
.bc-news__more:hover { background: var(--bc-blue); color: white; }

/* BANK META */
.bank-meta { display: flex; gap: 24px; flex-wrap: wrap; padding: 16px 20px; background: var(--bc-bg-soft); border-radius: 10px; }
.bank-meta__item { display: flex; flex-direction: column; gap: 4px; }
.bank-meta__label { font-size: 11px; color: var(--bc-text-3); text-transform: uppercase; letter-spacing: 0.5px; }
.bank-meta__value { font-size: 15px; font-weight: 600; color: var(--bc-text); }

/* FINANCIAL STATS (old) */
.bank-fin { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 24px; }
.bank-fin h3 { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.bank-fin__updated { font-size: 12px; color: var(--bc-text-3); font-weight: 400; }
.bank-fin__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 16px; }
@media (max-width: 992px) { .bank-fin__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .bank-fin__grid { grid-template-columns: repeat(2, 1fr); } }
.bank-fin__cell { padding: 14px 12px; background: var(--bc-bg-soft); border-radius: 8px; }
.bank-fin__label { font-size: 11px; color: var(--bc-text-3); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.bank-fin__value { font-size: 18px; font-weight: 700; color: var(--bc-text); font-variant-numeric: tabular-nums; }
.bank-fin__value small { font-size: 11px; color: var(--bc-text-3); font-weight: 500; }
.bank-fin__source { margin-top: 14px; font-size: 11px; color: var(--bc-text-3); }

/* GUIDES */
.bc-guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .bc-guides { grid-template-columns: 1fr; } }
.bc-guide { background: #fff; border: 1px solid var(--bc-border); border-radius: 12px; padding: 24px; text-decoration: none; color: inherit; transition: all 0.2s; display: block; }
.bc-guide:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,40,69,0.08); border-color: var(--bc-blue); }
.bc-guide__tag { font-size: 10px; color: var(--bc-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.bc-guide__title { font-size: 16px; font-weight: 500; line-height: 1.3; color: var(--bc-text); margin-bottom: 8px; }
.bc-guide__lead { font-size: 13px; color: var(--bc-text-2); line-height: 1.5; margin-bottom: 12px; }
.bc-guide__meta { display: flex; gap: 12px; font-size: 11px; color: var(--bc-text-3); }

/* FAQ ACCORDION (catalog) */
.bc-faq { display: flex; flex-direction: column; gap: 8px; }
.bc-faq__item { background: #fff; border: 1px solid var(--bc-border); border-radius: 10px; overflow: hidden; transition: all 0.2s; }
.bc-faq__item[open] { box-shadow: 0 4px 16px rgba(26,40,69,0.06); border-color: var(--bc-blue); }
.bc-faq__q { padding: 16px 20px; cursor: pointer; border-bottom: 1px solid #eff2f8; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 15px; font-weight: 600; color: var(--bc-text); list-style: none; user-select: none; }
.bc-faq__q::-webkit-details-marker { display: none; }
.bc-faq__q:hover { background: var(--bc-bg-soft); }
.bc-faq__icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bc-bg-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--bc-blue); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.bc-faq__item[open] .bc-faq__icon { transform: rotate(45deg); background: var(--bc-blue); color: white; }
.bc-faq__a { padding: 18px 20px 18px 20px; font-size: 14px; color: var(--bc-text-2); line-height: 1.6; }

/* SEO TEXT BLOCK */
.bc-seo { color: var(--bc-text-2); font-size: 15px; line-height: 1.7; }
.bc-seo h2 { font-size: 22px; font-weight: 700; color: var(--bc-text); margin: 0 0 16px; letter-spacing: -0.01em; }
.bc-seo h3 { font-size: 17px; font-weight: 700; color: var(--bc-text); margin: 28px 0 12px; }
.bc-seo p { margin: 0 0 14px; }
.bc-seo p strong { color: var(--bc-text); font-weight: 600; }
.bc-seo__update { font-size: 12px !important; color: var(--bc-text-3); margin-top: 24px !important; padding-top: 16px; border-top: 1px solid var(--bc-border); }


.bc-breadcrumbs { padding: 16px 0 0; font-size: 13px; color: var(--bc-text-3); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.bc-breadcrumbs a { color: var(--bc-text-2); text-decoration: none; transition: color 0.15s; }
.bc-breadcrumbs a:hover { color: var(--bc-blue); }
.bc-breadcrumbs__sep { opacity: 0.5; }
.bc-breadcrumbs__current { color: var(--bc-text); font-weight: 500; }

/* ============================================ */
/* === BANK VIEW (страница банка) === */
/* ============================================ */

.bv {
    background: #f7f8fa;
    color: #1a2845;
}

/* === BREADCRUMBS === */
.bv-breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: #8a93a3;
}
.bv-breadcrumbs a {
    color: #5a6478;
    text-decoration: none;
    transition: color .15s;
}
.bv-breadcrumbs a:hover { color: #365eba; }
.bv-breadcrumbs__sep { margin: 0 8px; opacity: .5; }
.bv-breadcrumbs__current { color: #1a2845; }

/* === HERO (светлая тема) === */
.bv-hero {
    background: #f7f8fa;
    color: #1a2845;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e9ef;
}
.bv-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(54,94,186,.04);
    pointer-events: none;
}
.bv-hero::after {
    content: '';
    position: absolute;
    right: 100px;
    bottom: -150px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(247,108,22,.06);
    pointer-events: none;
}
.bv-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .bv-hero__inner { grid-template-columns: 1fr; gap: 28px; }
}
.bv-hero__left { display: flex; flex-direction: column; gap: 16px; }
.bv-hero__logo-row { display: flex; align-items: center; gap: 16px; }
.bv-hero__logo-img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(26,40,69,.08);
    border: 1px solid #e5e9ef;
}
.bv-hero__name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1;
    color: #1a2845;
    margin: 0;
}
.bv-hero__tagline {
    font-size: 14px;
    color: #5a6478;
    margin-top: 4px;
}
.bv-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.bv-meta-badge {
    background: #fff;
    border: 1px solid #e5e9ef;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
.bv-meta-badge--rating {
    background: #f76c16;
    border-color: #f76c16;
    color: #fff;
    font-weight: 700;
}
.bv-hero__desc {
    font-size: 16px;
    line-height: 1.45;
    color: #333;
    max-width: 520px;
}
.bv-hero__desc p { margin: 0 0 8px; color: inherit; }
.bv-hero__desc strong { color: #1a2845; }
.bv-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.bv-btn {
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.bv-btn--primary { background: #f76c16; color: #fff; }
.bv-btn--primary:hover { background: #d05a10; color: #fff; transform: translateY(-1px); text-decoration: none; }
.bv-btn--secondary {
    background: #fff;
    color: #1a2845;
    border: 1px solid #e5e9ef;
}
.bv-btn--secondary:hover { background: #f0f3f8; color: #1a2845; text-decoration: none; }
.bv-btn--ghost {
    background: transparent;
    color: #5a6478;
    border: 1px solid #e5e9ef;
}
.bv-btn--ghost:hover { background: #fff; color: #1a2845; text-decoration: none; }

/* === HERO RIGHT — финпоказатели === */
.bv-hero__right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center;
}
.bv-hero__stats-title {
    font-size: 11px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.bv-hero__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.bv-stat-cell {
    background: #fff;
    border: 1px solid #e5e9ef;
    padding: 16px 18px;
    border-radius: 10px;
}
.bv-stat-cell--accent {
    background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
    border-color: #f76c16;
}
.bv-stat-cell__label {
    font-size: 11px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.bv-stat-cell__value {
    font-size: 24px;
    font-weight: 800;
    color: #1a2845;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.bv-stat-cell--accent .bv-stat-cell__value { color: #f76c16; }
.bv-stat-cell__suffix {
    font-size: 12px;
    font-weight: 500;
    color: #8a93a3;
    margin-left: 4px;
}
.bv-hero__update {
    font-size: 11px;
    color: #8a93a3;
    margin-top: 8px;
}

/* === STICKY TABS === */
.bv-tabs-wrap {
    background: #fff;
    border-bottom: 1px solid #e5e9ef;
    position: sticky;
    top: 0;
    z-index: 50;
}
.bv-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.bv-tabs::-webkit-scrollbar { display: none; }
.bv-tab {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all .15s;
}
.bv-tab:hover { color: #1a2845; text-decoration: none; }
.bv-tab.is-active {
    color: #365eba;
    border-bottom-color: #365eba;
}
.bv-tab__count {
    background: #f0f3f8;
    color: #8a93a3;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 4px;
}

/* === SECTIONS === */
.bv-section { padding: 48px 0 24px; scroll-margin-top: 72px; }
.bv-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.bv-section__title {
    font-size: 24px;
    font-weight: 800;
    color: #1a2845;
    letter-spacing: -.01em;
    margin: 0;
}
.bv-section__link {
    color: #365eba;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.bv-section__link:hover { text-decoration: underline; }

/* === STATUSES === */
.bv-statuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 32px;
}
.bv-status {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.bv-status__number {
    font-size: 22px;
    font-weight: 800;
    color: #f76c16;
    flex-shrink: 0;
}
.bv-status__description { font-size: 13px; color: #5a6478; }

/* === DEPOSITS SHOWCASE === */
.bv-deposits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .bv-deposits { grid-template-columns: 1fr; } }
.bv-deposit {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all .2s;
}
.bv-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,40,69,.08);
    border-color: #365eba;
}
.bv-deposit__badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: #f76c16;
    color: #fff;
    padding: 4px 12px 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 0 0 6px 6px;
}
.bv-deposit__type {
    font-size: 12px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.bv-deposit__name {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    letter-spacing: -.01em;
    line-height: 1.1;
}
.bv-deposit__rate {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #f76c16;
}
.bv-deposit__rate-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
}
.bv-deposit__rate-unit {
    font-size: 22px;
    font-weight: 700;
}
.bv-deposit__rate-label {
    font-size: 12px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
}
.bv-deposit__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
}
.bv-deposit__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
}
.bv-deposit__feature::before {
    content: '✓';
    color: #00b14f;
    font-weight: 700;
    flex-shrink: 0;
}
.bv-deposit__cta {
    margin-top: auto;
    display: block;
    padding: 12px 16px;
    text-align: center;
    background: #365eba;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .15s;
}
.bv-deposit__cta:hover { background: #2a4a96; color: #fff; text-decoration: none; }
.bv-deposit--featured {
    border-color: #f76c16;
    box-shadow: 0 4px 24px rgba(247,108,22,.15);
}
.bv-deposit--featured .bv-deposit__cta { background: #f76c16; }
.bv-deposit--featured .bv-deposit__cta:hover { background: #d05a10; }

/* === ABOUT === */
.bv-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) { .bv-about-grid { grid-template-columns: 1fr; } }
.bv-about-text {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 32px;
    font-size: 16px;
    line-height: 1.45;
    color: #333;
}
.bv-about-text h2,
.bv-about-text h3 {
    color: #1a2845;
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px;
}
.bv-about-text h2:first-child,
.bv-about-text h3:first-child { margin-top: 0; }
.bv-about-text p { margin-bottom: 12px; }
.bv-about-text strong { color: #1a2845; }
.bv-about-text a { color: #365eba; }

.bv-quick-facts {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 72px;
}
.bv-quick-facts__title {
    font-size: 13px;
    font-weight: 700;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.bv-quick-facts__list { display: flex; flex-direction: column; gap: 14px; }
.bv-quick-facts__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef0f4;
}
.bv-quick-facts__item:last-child { border-bottom: none; padding-bottom: 0; }
.bv-quick-facts__label {
    font-size: 11px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.bv-quick-facts__value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.bv-quick-facts__value a { color: #365eba; text-decoration: none; }
.bv-quick-facts__value a:hover { text-decoration: underline; }

/* === FIN STATS === */
.bv-fin-stats {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 32px;
}
.bv-fin-stats__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.bv-fin-stats__title { font-size: 20px; font-weight: 500; color: #1a2845; }
.bv-fin-stats__date { font-size: 12px; color: #8a93a3; }
.bv-fin-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
@media (max-width: 992px) { .bv-fin-stats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .bv-fin-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.bv-fin-cell {
    padding: 16px 14px;
    background: linear-gradient(135deg, #f0f3f8, #f7f8fa);
    border-radius: 10px;
    border: 1px solid #eef0f4;
}
.bv-fin-cell__label {
    font-size: 11px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    font-weight: 600;
}
.bv-fin-cell__value {
    font-size: 22px;
    font-weight: 800;
    color: #1a2845;
    font-variant-numeric: tabular-nums;
}
.bv-fin-cell__suffix {
    font-size: 11px;
    color: #8a93a3;
    font-weight: 500;
    margin-left: 4px;
}

/* === CONTACTS === */
.bv-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .bv-contacts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bv-contacts-grid { grid-template-columns: 1fr; } }
.bv-contact-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .15s;
}
.bv-contact-card:hover {
    border-color: #365eba;
    box-shadow: 0 1px 3px rgba(26,40,69,.06);
}
.bv-contact-card__label {
    font-size: 11px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.bv-contact-card__value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    word-break: break-word;
}
.bv-contact-card__value a { color: #365eba; text-decoration: none; }
.bv-contact-card__value a:hover { text-decoration: underline; }

/* === REVIEWS === */
.bv-reviews-wrap {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 32px;
}

/* === NEWS (bank view) === */
.bv-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 992px) { .bv-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bv-news-grid { grid-template-columns: 1fr; } }
.bv-news-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
    display: flex;
    flex-direction: column;
}
.bv-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,40,69,.08);
    text-decoration: none;
    color: inherit;
}
.bv-news-card__img {
    height: 140px;
    background-color: #f0f3f8;
    background-size: cover;
    background-position: center;
}
.bv-news-card__img--placeholder {
    background: linear-gradient(135deg, #365eba, #2a4a96);
}
.bv-news-card__content { padding: 14px 16px 16px; }
.bv-news-card__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #333;
    margin-bottom: 8px;
}
.bv-news-card__date { font-size: 11px; color: #8a93a3; }

/* === SIMILAR BANKS === */
.bv-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 992px) { .bv-similar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bv-similar-grid { grid-template-columns: 1fr; } }
.bv-similar-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bv-similar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,40,69,.08);
    border-color: #365eba;
    text-decoration: none;
    color: inherit;
}
.bv-similar-card__head { display: flex; align-items: center; gap: 12px; }
.bv-similar-card__logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: #f0f3f8;
    padding: 4px;
}
.bv-similar-card__logo--placeholder {
    background: #365eba;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.bv-similar-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #1a2845;
}
.bv-similar-card__row {
    background: #f0f3f8;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 11px;
    color: #8a93a3;
    display: flex;
    justify-content: space-between;
}
.bv-similar-card__row strong {
    color: #1a2845;
    font-variant-numeric: tabular-nums;
}

/* === FAQ (bank view) === */
.bv-faq { display: flex; flex-direction: column; gap: 8px; }
.bv-faq-item {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    overflow: hidden;
}
.bv-faq-item[open] {
    box-shadow: 0 1px 3px rgba(26,40,69,.06);
    border-color: #365eba;
}
.bv-faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1a2845;
    list-style: none;
}
.bv-faq-q::-webkit-details-marker { display: none; }
.bv-faq-q:hover { background: #f0f3f8; }
.bv-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #365eba;
    transition: all .2s;
    flex-shrink: 0;
}
.bv-faq-item[open] .bv-faq-icon {
    transform: rotate(45deg);
    background: #365eba;
    color: #fff;
}
.bv-faq-a {
    padding: 0 22px 20px;
    font-size: 14px;
    color: #5a6478;
    line-height: 1.65;
}
