.bt-breadcrumb { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; font-size: 14px; color: var(--shuttle); background: #fff; border: 1px solid var(--athens); border-radius: 10px; box-shadow: 0 1px 3px rgba(16,35,63,.04); margin-bottom: 18px; }
.bt-breadcrumb a { display: inline-flex; align-items: center; gap: 6px; color: var(--shuttle); transition: color var(--transition); }
.bt-breadcrumb a:hover { color: var(--mariner); }
.bt-breadcrumb .bt-icon { font-size: 12px; color: var(--gray-ch); }
.bt-breadcrumb span { color: var(--shark); font-weight: 600; }
.bt-breadcrumb i { font-size: 12px; color: var(--gray-ch); }

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #202124;
  background: #F7F9FC;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}
.bt-page { min-height: 100%; display: flex; flex-direction: column; }
.bt-chat-mobile-open, .bt-chat-mobile-open body { overflow: hidden !important; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input { font: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --shark: #202124;
  --shuttle: #5F6368;
  --cape: #3C4043;
  --gray-ch: #9AA0A6;
  --boulder: #757575;
  --ghost: #C9CDD3;
  --aluminium: #AEB4BD;
  --iron: #DADCE0;
  --athens: #E0E3E7;
  --athens-2: #EEF0F2;
  --athens-3: #F8F9FA;
  --white-lilac: #F7F9FC;
  --periwinkle: #CDD8FF;
  --zircon: #EEF3FF;
  --zircon-2: #F7F9FF;
  --malibu: #8AA4FF;
  --mariner: #2451DC;
  --denim: #0B57D0;
  --tory: #174EA6;
  --jewel: #188038;
  --eucalypt: #26A852;
  --brandy: #D9782B;
  --pumpkin: #FF7615;
  --selective: #FBBC04;
  --blue-zodiac: #10233F;
  --pale-sky: #6B7280;
  --river-bed: #4B5563;
  --alabaster: #FAFAFA;
  --mountain-meadow: #20B15A;
  --cinnabar: #EF4444;
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-btn: 7px;
  --shadow-card: 0 1px 2px rgba(16,35,63,.04), 0 1px 3px rgba(16,35,63,.04);
  --shadow-hover: 0 4px 14px rgba(16,35,63,.08);
  --transition: 160ms ease;
  --content-width: 1392px;
}

/* ===================== SCROLLBAR ===================== */
* { scrollbar-width: thin; scrollbar-color: var(--iron) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--iron); border-radius: 8px; border: 2px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background: var(--aluminium); background-clip: padding-box; border: 2px solid transparent; }
*::-webkit-scrollbar-corner { background: transparent; }

/* ===================== FA ICONS ===================== */
.bt-icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; flex: 0 0 auto; }

/* ===================== PAGE LAYOUT ===================== */
.bt-page { background: var(--white-lilac); min-height: 100vh; display: flex; flex-direction: column; }

/* ===================== HEADER ===================== */
.bt-header { position: sticky; top: 0; z-index: 50; background: transparent; border-bottom: 1px solid var(--athens); transition: background var(--transition), box-shadow var(--transition); }
.bt-header.is-scrolled { background: #fff; box-shadow: 0 1px 4px rgba(16,35,63,.05); }
.bt-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 32px; height: 64px; max-width: var(--content-width); margin: 0 auto; gap: 16px; }
.bt-header__col--left { display: flex; justify-content: flex-start; align-items: center; gap: 16px; }
.bt-header__col--center { display: flex; justify-content: center; }
.bt-header__col--right { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.bt-header__logo { display: inline-flex; }
.bt-header__logo img { height: 38px; width: auto; }
.bt-header__loc { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: var(--shark); padding: 8px 12px; border-radius: 8px; transition: background var(--transition); background: transparent; }
.bt-header__loc i { font-size: 16px; color: var(--mariner); }
.bt-header__loc:hover { background: var(--athens-2); }
.bt-header__group { display: inline-flex; align-items: center; }
.bt-header__fav, .bt-header__login, .bt-header__user, .bt-header__logout, .bt-header__msg, .bt-header__leads { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px; font-weight: 700; font-size: 15px; color: var(--shark); border: 1px solid var(--athens); background: transparent; border-radius: 10px; transition: border-color var(--transition), background var(--transition), color var(--transition); position: relative; text-decoration: none; }
.bt-header__fav i, .bt-header__login i, .bt-header__user i, .bt-header__logout i, .bt-header__msg i, .bt-header__leads i { font-size: 16px; color: var(--mariner); }
.bt-header__fav:hover, .bt-header__login:hover, .bt-header__user:hover, .bt-header__msg:hover, .bt-header__leads:hover { border-color: var(--periwinkle); background: var(--zircon); color: var(--denim); }
.bt-header__count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--cinnabar); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.bt-header__count[hidden] { display: none; }
.bt-header__logout { padding: 0 12px; border-top-left-radius: 0; border-bottom-left-radius: 0; margin-left: -1px; }
.bt-header__logout:hover { color: #dc2626; border-color: #fecaca; background: #fef2f2; }
.bt-header__user { border-top-right-radius: 0; border-bottom-right-radius: 0; text-decoration: none; }

/* ===================== MAIN ===================== */
.bt-main { flex: 1 1 auto; display: flex; gap: 24px; padding: 22px 34px 34px; align-items: flex-start; justify-content: center; max-width: var(--content-width); margin: 0 auto; width: 100%; }
.bt-content { width: 938px; max-width: 100%; display: flex; flex-direction: column; gap: 12px; }

/* ===================== HERO BANNER ===================== */
.bt-banner { border: 1px solid var(--periwinkle); border-radius: var(--radius-card); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); margin-bottom: 15px; }
.bt-banner img { width: 100%; display: block; object-fit: cover; }

/* ===================== HERO ===================== */
.bt-hero { border: 1px solid var(--periwinkle); border-radius: var(--radius-card); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.bt-hero__panel { display: grid; grid-template-columns: 88px 1fr; grid-template-rows: auto 25px; gap: 22px; padding: 26px; }
.bt-hero__icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; background: var(--zircon); border-radius: 36px; color: var(--mariner); }
.bt-hero__icon .bt-icon { font-size: 38px; }
.bt-hero__body { display: flex; flex-direction: column; gap: 7px; }
.bt-hero__title { font-size: 26px; line-height: 29.9px; font-weight: 700; color: var(--shark); }
.bt-hero__subtitle { font-size: 16px; line-height: 22.4px; color: var(--shuttle); }
.bt-hero__hint { grid-column: 1 / span 2; align-self: end; padding: 14px 0 0; border-top: 1px solid var(--athens-2); font-size: 14px; color: var(--shuttle); display: flex; align-items: center; gap: 6px; }
.bt-hint-icon { font-size: 14px; color: var(--mariner); }

/* Search */
.bt-search { display: flex; align-items: center; gap: 12px; padding: 10px 10px 10px 16px; border: 1px solid var(--iron); border-radius: 12px; background: #fff; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-search:focus-within { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-search__input { flex: 1 1 auto; border: none; outline: none; padding: 1px 2px; font-size: 16px; color: var(--shark); background: transparent; }
.bt-search__input::placeholder { color: var(--boulder); }
.bt-search__btn { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 21px; background: var(--mariner); color: #fff; display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition); }
.bt-search__btn .bt-icon { font-size: 16px; }
.bt-search__btn:hover { background: var(--denim); }
.bt-search__btn:active { transform: scale(.96); }

/* Chips */
.bt-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 3px; }
.bt-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; font-size: 14px; color: var(--cape); border: 1px solid #DADCE0; border-radius: 7px; background: #fff; transition: border-color var(--transition), background var(--transition), color var(--transition); }
.bt-chip .bt-icon { font-size: 13px; color: var(--shuttle); }
.bt-chip:hover { border-color: var(--malibu); background: var(--zircon); }
.bt-chip.is-active { background: var(--zircon); border-color: var(--mariner); color: var(--mariner); font-weight: 700; }
.bt-chip.is-active .bt-icon { color: var(--mariner); }

/* ===================== RATING HEADING ===================== */
.bt-rating-head { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 10px; gap: 16px; }
.bt-rating-head__title { display: flex; flex-direction: column; gap: 7px; }
.bt-rating-head__name { font-size: 22px; font-weight: 700; color: var(--shark); line-height: 1.2; }
.bt-rating-head__sub { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--shuttle); flex-wrap: wrap; }
.bt-rating-head__city, .bt-rating-head__filters { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-weight: 700; font-size: 15px; color: var(--mariner); background: var(--zircon); border: 1px solid var(--periwinkle); border-radius: 10px; transition: background var(--transition), border-color var(--transition), color var(--transition); }
.bt-rating-head__city:hover, .bt-rating-head__filters:hover { background: var(--periwinkle); border-color: var(--malibu); color: var(--denim); }
.bt-rating-head__city .bt-icon, .bt-rating-head__filters .bt-icon { width: 14px; height: 14px; }
.bt-rating-head__count { color: var(--shuttle); white-space: nowrap; }
.bt-rating-head__filters { display: none; margin-left: auto; }
.bt-muted { color: var(--shuttle); }
.bt-accent { font-weight: 700; color: var(--mariner); }
.bt-link { font-weight: 700; font-size: 16px; color: var(--denim); padding: 0 0 1px; border-bottom: 1px solid transparent; transition: border-color var(--transition), color var(--transition); }
.bt-link:hover { border-color: currentColor; }

/* ===================== COMPANIES ===================== */
.bt-companies { display: flex; flex-direction: column; gap: 10px; }
.bt-company { display: grid; grid-template-columns: 34px 78px minmax(0,1fr) 150px 28px; grid-template-rows: auto auto; gap: 16px; padding: 14px; background: #fff; border: 1px solid var(--athens); border-radius: 12px; box-shadow: var(--shadow-card); transition: box-shadow var(--transition), border-color var(--transition); cursor: pointer; outline: none; }
.bt-company:hover { box-shadow: var(--shadow-hover); border-color: var(--periwinkle); }
.bt-company:focus-visible { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.25); }
.bt-company__rank { grid-column: 1; grid-row: 1; display: flex; align-items: center; justify-content: center; width: 24px; height: 34px; border-radius: 6px 6px 9px 9px; color: #fff; font-weight: 700; font-size: 16px; line-height: 1; }
.bt-company__rank--top { background: var(--selective); }
.bt-company__rank--normal { background: var(--aluminium); }
.bt-company__avatar { grid-column: 2; grid-row: 1; width: 70px; height: 70px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 38px; font-weight: 700; line-height: 1; }
.bt-company__body { grid-column: 3; grid-row: 1; display: flex; flex-direction: column; gap: 6px; align-self: center; min-width: 0; }
.bt-company__name { font-size: 18px; font-weight: 700; color: var(--shark); line-height: 1.25; }
.bt-company__meta { font-size: 14px; line-height: 20.3px; color: var(--cape); display: flex; flex-direction: column; gap: 2px; }
.bt-company__meta > span { display: inline-flex; align-items: center; gap: 5px; }
.bt-company__star { color: var(--selective); font-size: 13px; }
.bt-company__loc { color: var(--cape); }
.bt-company__loc .bt-icon { font-size: 13px; color: var(--cape); }
.bt-company__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.bt-company__tag { display: inline-flex; padding: 4px 10px; font-size: 12px; color: var(--shuttle); background: var(--athens-3); border: 1px solid var(--athens); border-radius: 6px; }
.bt-company__price { grid-column: 4; grid-row: 1; align-self: center; text-align: right; font-weight: 700; font-size: 16px; color: var(--jewel); white-space: nowrap; }
.bt-company__arrow { grid-column: 5; grid-row: 1; align-self: center; text-align: center; color: var(--shark); line-height: 1; display: flex; align-items: center; justify-content: center; }
.bt-company__arrow .bt-icon { font-size: 22px; color: var(--shark); }
.bt-company__actions { grid-column: 3 / span 2; grid-row: 2; display: flex; justify-content: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--athens); }
.bt-company__action { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; font-weight: 700; font-size: 13px; border-radius: 8px; transition: background var(--transition), color var(--transition); background: transparent; border: none; }
.bt-company__action .bt-icon { font-size: 14px; }
.bt-company__action--ai { color: var(--mariner); }
.bt-company__action--ai .bt-icon { color: var(--mariner); }
.bt-company__action--ai:hover { background: var(--zircon); }
.bt-company__action--favorite { color: var(--mariner); }
.bt-company__action--favorite:hover { background: var(--zircon); }
.bt-company__action--favorite.is-active { background: var(--mariner); color: #fff; }
.bt-company__action--favorite.is-active .bt-icon { color: #fff; }
.bt-company__action--favorite.is-remove { color: var(--cinnabar); border-color: rgba(239,68,68,.25); }
.bt-company__action--favorite.is-remove:hover { background: rgba(239,68,68,.08); }
.bt-company__action--favorite.is-remove.is-active { background: var(--cinnabar); color: #fff; border-color: var(--cinnabar); }
.bt-company__action--favorite.is-remove.is-active .bt-icon { color: #fff; }
.bt-company__action--profile { color: var(--shuttle); }
.bt-company__action--profile:hover { background: var(--athens-2); }
.bt-company__action--chat { color: var(--mariner); }
.bt-company__action--chat .bt-icon { color: var(--mariner); }
.bt-company__action--chat:hover { background: var(--zircon); }

/* ===================== ASIDE ===================== */
.bt-aside { width: 410px; flex: 0 0 410px; padding: 20px; background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); display: flex; flex-direction: column; box-shadow: var(--shadow-card); position: sticky; top: 84px; align-self: flex-start; max-height: calc(100vh - 84px - 20px); }
.bt-aside__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; flex: 0 0 auto; }
.bt-aside__title { font-size: 22px; font-weight: 700; color: var(--shark); }
.bt-aside__body { overflow-y: auto; padding-right: 6px; margin-right: -6px; flex: 1 1 auto; min-height: 0; scrollbar-width: thin; scrollbar-color: var(--aluminium) transparent; }
.bt-aside__body::-webkit-scrollbar { width: 6px; }
.bt-aside__body::-webkit-scrollbar-track { background: transparent; }
.bt-aside__body::-webkit-scrollbar-thumb { background: var(--aluminium); border-radius: 3px; }
.bt-aside__body::-webkit-scrollbar-thumb:hover { background: var(--gray-ch); }
.bt-aside__foot { position: relative; flex: 0 0 auto; padding-top: 18px; }
.bt-aside__foot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 24px; background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%); pointer-events: none; transform: translateY(-100%); }
.bt-aside__submit { width: 100%; padding: 15px 6px 16px; background: var(--mariner); color: #fff; border-radius: 9px; font-weight: 700; font-size: 16px; transition: background var(--transition), transform var(--transition); }
.bt-aside__submit:hover { background: var(--denim); }
.bt-aside__submit:hover:not(:disabled) { background: var(--denim); }
.bt-aside__submit:active:not(:disabled) { transform: scale(.99); }
.bt-aside__submit.is-pulse:not(:disabled) { animation: bt-pulse-border 1.4s ease-in-out infinite; }
@keyframes bt-pulse-border { 0%, 100% { box-shadow: 0 0 0 0 rgba(36,81,220,.35); } 50% { box-shadow: 0 0 0 6px rgba(36,81,220,0); } }

/* Filters */
.bt-filter { padding: 13px 0; border-top: 1px solid var(--athens-2); display: flex; flex-direction: column; gap: 10px; }
.bt-filter--last { padding-bottom: 25px; }
.bt-filter__title { font-size: 15px; font-weight: 700; color: var(--shark); }

/* Tags */
.bt-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.bt-tag { display: inline-flex; align-items: center; gap: 5px; padding: 7px 11px; font-size: 13px; color: var(--cape); border: 1px solid var(--iron); border-radius: var(--radius-btn); background: #fff; transition: all var(--transition); }
.bt-tag:hover { border-color: var(--malibu); background: var(--zircon-2); }
.bt-tag.is-active { background: var(--zircon-2); border-color: var(--malibu); color: var(--tory); font-weight: 700; }
.bt-tag__caret { font-size: 10px; color: var(--gray-ch); }
.bt-tag__star { font-size: 11px; color: var(--selective); }
.bt-tag.is-active .bt-tag__star { color: var(--selective); }
.bt-tag__check, .bt-tag__close { font-size: 10px; flex: 0 0 auto; display: inline-block; }
.bt-tag__check { color: var(--tory); }
.bt-tag__close { color: var(--tory); opacity: .8; }

/* Range */
.bt-range { display: flex; align-items: center; gap: 10px; }
.bt-range__field { flex: 1 1 0; display: flex; flex-direction: column; gap: 1px; padding: 8px 10px; border: 1px solid var(--iron); border-radius: 8px; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-range__field:focus-within { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-range__label { font-size: 11px; color: var(--gray-ch); }
.bt-range__input { border: none; outline: none; padding: 1px 2px; font-size: 16px; color: var(--shark); background: transparent; width: 100%; min-width: 0; -moz-appearance: textfield; appearance: textfield; }
.bt-range__input::-webkit-outer-spin-button, .bt-range__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bt-range__input[type="number"] { -moz-appearance: textfield; }
.bt-range__input::placeholder { color: var(--boulder); font-size: 13px; }
.bt-range__dash { flex: 0 0 18px; text-align: center; font-size: 16px; color: var(--shark); }

/* Switches */
.bt-checks { display: flex; flex-direction: column; gap: 9px; }
.bt-check { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 4px 0; }
.bt-check > span:first-child { font-size: 14px; color: var(--shark); }
.bt-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.bt-switch { width: 34px; height: 19px; background: var(--ghost); border-radius: 20px; position: relative; flex: 0 0 auto; transition: background var(--transition); }
.bt-switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; background: #fff; border-radius: 50%; transition: transform var(--transition); box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.bt-check input:checked + .bt-switch { background: var(--mariner); }
.bt-check input:checked + .bt-switch::after { transform: translateX(15px); }
.bt-check input:focus-visible + .bt-switch { box-shadow: 0 0 0 3px rgba(36,81,220,.25); }

/* ===================== AVATAR COLORS ===================== */
.bt-avatar--A { background: var(--blue-zodiac); }
.bt-avatar--e { background: var(--eucalypt); }
.bt-avatar--check { background: var(--pumpkin); }
.bt-avatar--grid { background: var(--mariner); }

/* ===================== FOOTER ===================== */
.bt-footer { background: #fff; border-top: 1px solid var(--athens); margin-top: 34px; }
.bt-footer__inner { max-width: var(--content-width); margin: 0 auto; padding: 40px 34px 24px; }
.bt-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; }
.bt-footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.bt-footer__logo { height: 38px; width: auto; }
.bt-footer__about { font-size: 14px; line-height: 20px; color: var(--shuttle); }
.bt-footer__title { font-size: 15px; font-weight: 700; color: var(--shark); margin-bottom: 14px; }
.bt-footer__list { display: flex; flex-direction: column; gap: 10px; }
.bt-footer__list a { font-size: 14px; color: var(--shuttle); transition: color var(--transition); }
.bt-footer__list a:hover { color: var(--mariner); }
.bt-footer__social { display: flex; gap: 10px; margin-top: 4px; }
.bt-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--athens); border-radius: 10px; color: var(--shuttle); transition: all var(--transition); }
.bt-footer__social a .bt-icon { font-size: 16px; }
.bt-footer__social a:hover { border-color: var(--periwinkle); background: var(--zircon); color: var(--mariner); }
.bt-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--athens-2); flex-wrap: wrap; }
.bt-footer__copy { font-size: 13px; color: var(--gray-ch); }
.bt-footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.bt-footer__legal a { font-size: 13px; color: var(--shuttle); transition: color var(--transition); }
.bt-footer__legal a:hover { color: var(--mariner); }

/* ===================== RATING HEAD (filters toggle button) ===================== */
.bt-rating-head__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bt-filters-toggle { display: none; align-items: center; gap: 6px; padding: 8px 14px; font-size: 14px; font-weight: 700; color: var(--mariner); border: 1px solid var(--mariner); border-radius: 10px; background: #fff; transition: background var(--transition); }
.bt-filters-toggle .bt-icon { font-size: 14px; }
.bt-filters-toggle:hover { background: var(--zircon); }

/* Mobile filters drawer */
.bt-filters-drawer { display: none; }

/* ===================== AUTH MODAL ===================== */
.bt-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; }
.bt-modal.is-open { display: flex; }
.bt-modal__overlay { position: absolute; inset: 0; background: rgba(16,35,63,.45); backdrop-filter: blur(2px); animation: bt-fade-in 180ms ease; }
.bt-modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 480px; background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(16,35,63,.18); overflow: hidden; animation: bt-slide-up 220ms ease; }
.bt-modal__wrap { position: relative; z-index: 1; width: 100%; max-width: 480px; }
.bt-modal__close { position: absolute; top: -14px; right: -14px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--shuttle); box-shadow: 0 2px 8px rgba(16,35,63,.15); transition: background var(--transition), color var(--transition), transform var(--transition); z-index: 3; }
.bt-modal__close:hover { background: var(--athens-2); color: var(--shark); transform: scale(1.05); }
.bt-modal__close .bt-icon { font-size: 16px; }
.bt-modal__body { padding: 28px 28px 30px; }
.bt-modal__title { font-size: 22px; font-weight: 700; color: var(--shark); margin-bottom: 6px; padding-right: 36px; }
.bt-modal__subtitle { font-size: 14px; color: var(--shuttle); margin-bottom: 22px; }
.bt-modal__tabs { display: flex; gap: 4px; padding: 4px; background: var(--athens-2); border-radius: 10px; margin-bottom: 22px; }
.bt-modal__tab { flex: 1; padding: 9px 8px; font-size: 14px; font-weight: 700; color: var(--shuttle); border-radius: 8px; text-align: center; transition: background var(--transition), color var(--transition); }
.bt-modal__tab.is-active { background: #fff; color: var(--shark); box-shadow: 0 1px 3px rgba(16,35,63,.08); }
.bt-modal__field { position: relative; margin-bottom: 18px; }
.bt-form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.bt-form-label { font-size: 13px; font-weight: 600; color: var(--shark); }
.bt-form-input { width: 100%; height: 46px; padding: 0 14px; font-size: 15px; color: var(--shark); border: 1px solid var(--iron); border-radius: 10px; background: #fff; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-form-input::placeholder { color: var(--boulder); }
.bt-form-input:focus { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-form-input--textarea { min-height: 90px; height: auto; padding: 12px 14px; resize: vertical; }
.bt-modal__input { width: 100%; height: 52px; padding: 0 14px; font-size: 15px; color: var(--shark); border: 1px solid var(--iron); border-radius: 12px; background: #fff; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-modal__input::placeholder { color: var(--boulder); }
.bt-modal__input:focus { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-modal__label { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 15px; color: var(--boulder); pointer-events: none; background: #fff; padding: 0 4px; transition: all var(--transition); }
.bt-modal__field--floating .bt-modal__input { padding-top: 18px; padding-bottom: 6px; }
.bt-modal__field--floating .bt-modal__input:focus ~ .bt-modal__label,
.bt-modal__field--floating .bt-modal__input:not(:placeholder-shown) ~ .bt-modal__label,
.bt-modal__field--floating.is-filled .bt-modal__label { top: 0; font-size: 12px; font-weight: 700; color: var(--mariner); }
.bt-modal__field--textarea .bt-modal__input { min-height: 100px; height: auto; padding-top: 22px; }
.bt-modal__field--textarea .bt-modal__label { top: 16px; transform: none; }
.bt-modal__field--textarea .bt-modal__input:focus ~ .bt-modal__label,
.bt-modal__field--textarea .bt-modal__input:not(:placeholder-shown) ~ .bt-modal__label { top: 0; transform: translateY(-50%); }
.bt-modal__field--floating .bt-input-wrp ~ .bt-modal__label { left: 14px; top: 50%; transform: translateY(-50%); }
.bt-modal__input:focus { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-modal__input:-webkit-autofill,
.bt-modal__input:-webkit-autofill:hover,
.bt-modal__input:-webkit-autofill:focus,
.bt-modal__input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px #fff inset !important; -webkit-text-fill-color: var(--shark) !important; transition: background-color 5000s ease-in-out 0s; }
.bt-modal__submit { width: 100%; height: 48px; margin-top: 6px; background: var(--mariner); color: #fff; border-radius: 12px; font-weight: 700; font-size: 16px; transition: background var(--transition), transform var(--transition); }
.bt-modal__submit:hover { background: var(--denim); }
.bt-modal__submit:active { transform: scale(.99); }
.bt-modal__row { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; gap: 12px; flex-wrap: wrap; }
.bt-modal__check { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--shuttle); cursor: pointer; user-select: none; }
.bt-modal__check input { position: absolute; opacity: 0; width: 0; height: 0; }
.bt-modal__check-box { width: 18px; height: 18px; border: 1.5px solid var(--iron); border-radius: 5px; background: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 18px; transition: background var(--transition), border-color var(--transition); }
.bt-modal__check-box svg { width: 12px; height: 12px; fill: #fff; opacity: 0; transition: opacity var(--transition); }
.bt-modal__check input:checked + .bt-modal__check-box { background: var(--mariner); border-color: var(--mariner); }
.bt-modal__check input:checked + .bt-modal__check-box svg { opacity: 1; }
.bt-modal__check input:focus-visible + .bt-modal__check-box { box-shadow: 0 0 0 3px rgba(36,81,220,.25); }
.bt-modal__check:hover .bt-modal__check-box { border-color: var(--malibu); }
.bt-modal__link { font-size: 13px; color: var(--denim); font-weight: 700; cursor: pointer; }
.bt-modal__link:hover { text-decoration: underline; }
.bt-modal__divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray-ch); font-size: 13px; }
.bt-modal__divider::before, .bt-modal__divider::after { content: ""; flex: 1; height: 1px; background: var(--athens); }
.bt-modal__socials { display: flex; gap: 10px; }
.bt-modal__social { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; border: 1px solid var(--athens); border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--shark); transition: border-color var(--transition), background var(--transition); }
.bt-modal__social:hover { border-color: var(--periwinkle); background: var(--zircon); }
.bt-modal__social .bt-icon { font-size: 16px; }
.bt-modal__bottom { padding: 18px 28px 22px; background: #fff; border-top: 1px solid var(--athens); text-align: center; font-size: 14px; color: var(--shuttle); }
.bt-modal__bottom a { display: inline-flex; align-items: center; gap: 6px; color: var(--mariner); font-weight: 700; cursor: pointer; padding: 4px 10px; border-radius: 8px; transition: background var(--transition), color var(--transition); }
.bt-modal__bottom a:hover { background: var(--zircon); color: var(--denim); text-decoration: none; }
.bt-modal__bottom a::after { content: "→"; font-size: 14px; }
.bt-modal__bottom--muted { background: var(--athens-3); }
.bt-modal__hint { margin-top: 14px; padding: 10px 12px; background: var(--zircon); border-radius: 8px; font-size: 13px; color: var(--tory); display: flex; align-items: center; gap: 8px; }
.bt-modal__hint .bt-icon { font-size: 14px; color: var(--mariner); }

/* ===================== CITY MODAL ===================== */
.bt-modal--city .bt-modal__dialog { max-width: 520px; }
.bt-city__search { position: relative; margin-bottom: 16px; }
.bt-city__search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--gray-ch); pointer-events: none; }
.bt-city__input { width: 100%; height: 46px; padding: 0 14px 0 42px; font-size: 15px; color: var(--shark); border: 1px solid var(--iron); border-radius: 10px; background: #fff; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-city__input::placeholder { color: var(--boulder); }
.bt-city__input:focus { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-city__list { max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; padding-right: 4px; }
.bt-city__item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px; text-align: left; transition: background var(--transition); border: 1px solid transparent; }
.bt-city__item:hover { background: var(--zircon); border-color: var(--periwinkle); }
.bt-city__pin { font-size: 14px; color: var(--mariner); flex: 0 0 auto; }
.bt-city__name { font-size: 15px; font-weight: 700; color: var(--shark); }
.bt-city__region { font-size: 13px; color: var(--shuttle); margin-left: auto; text-align: right; }
.bt-city__empty { text-align: center; padding: 24px 12px; font-size: 14px; color: var(--gray-ch); }

/* ===================== AI DIALOG MODAL ===================== */
.bt-modal--ai .bt-modal__dialog { max-width: 540px; }
.bt-ai__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bt-ai__icon { flex: 0 0 44px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--zircon); border-radius: 12px; color: var(--mariner); }
.bt-ai__icon .bt-icon { font-size: 22px; }
.bt-ai__head .bt-modal__title { padding-right: 0; margin-bottom: 2px; }
.bt-ai__head .bt-modal__subtitle { margin-bottom: 0; }
.bt-ai__head .bt-modal__subtitle strong { color: var(--mariner); font-weight: 700; }
.bt-ai__chat { max-height: 280px; overflow-y: auto; padding-right: 4px; display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.bt-ai__msg { display: flex; gap: 10px; align-items: flex-end; }
.bt-ai__msg--user { flex-direction: row-reverse; }
.bt-ai__avatar { flex: 0 0 32px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--zircon); border-radius: 50%; color: var(--mariner); }
.bt-ai__msg--user .bt-ai__avatar { background: var(--mariner); color: #fff; }
.bt-ai__avatar .bt-icon { font-size: 14px; }
.bt-ai__bubble { max-width: 75%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; color: var(--shark); }
.bt-ai__msg--bot .bt-ai__bubble { background: var(--athens-3); border-bottom-left-radius: 4px; }
.bt-ai__msg--user .bt-ai__bubble { background: var(--mariner); color: #fff; border-bottom-right-radius: 4px; }
.bt-ai__form { display: flex; gap: 10px; }
.bt-ai__input { flex: 1 1 auto; height: 46px; padding: 0 14px; font-size: 15px; color: var(--shark); border: 1px solid var(--iron); border-radius: 12px; background: #fff; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.bt-ai__input::placeholder { color: var(--boulder); }
.bt-ai__input:focus { border-color: var(--malibu); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-ai__send { flex: 0 0 46px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--mariner); color: #fff; border-radius: 12px; transition: background var(--transition), transform var(--transition); }
.bt-ai__send:hover { background: var(--denim); }
.bt-ai__send:active { transform: scale(.95); }
.bt-ai__send .bt-icon { font-size: 18px; }

@keyframes bt-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bt-slide-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bt-bounce-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ===================== SHOW MORE ===================== */
.bt-show-more { display: flex; justify-content: center; margin-top: 28px; }
.bt-show-more__btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 15px; font-weight: 700; color: var(--mariner); background: #fff; border: 1px solid var(--periwinkle); border-radius: 12px; box-shadow: 0 2px 8px rgba(36,81,220,.08); transition: all var(--transition); }
.bt-show-more__btn .bt-icon { width: 16px; height: 16px; color: var(--mariner); animation: bt-bounce-soft 1.6s ease-in-out infinite; }
.bt-show-more__btn:hover { background: var(--zircon); border-color: var(--malibu); color: var(--denim); box-shadow: 0 4px 14px rgba(36,81,220,.14); }
.bt-show-more__btn:hover .bt-icon { color: var(--denim); }
.bt-show-more__btn:active { transform: scale(.98); }
.bt-show-more__btn.is-loading { pointer-events: none; opacity: .75; }
.bt-show-more__btn.is-hidden { display: none; }

/* ===================== RANGE SLIDER ===================== */
.bt-range-slider { padding: 8px 0 4px; }
.bt-range-slider__track { position: relative; height: 6px; margin: 0 10px; border-radius: 3px; background: var(--athens); }
.bt-range-slider__bar { position: absolute; top: 0; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--mariner), var(--malibu)); pointer-events: none; }
.bt-range-slider__input { position: absolute; top: 50%; left: -10px; right: -10px; width: calc(100% + 20px); height: 0; margin: 0; padding: 0; -webkit-appearance: none; appearance: none; background: none; pointer-events: none; transform: translateY(-50%); }
.bt-range-slider__input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border: 2px solid #fff; border-radius: 50%; background: var(--mariner); box-shadow: 0 2px 6px rgba(36,81,220,.35); pointer-events: auto; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.bt-range-slider__input::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 3px 10px rgba(36,81,220,.45); }
.bt-range-slider__input::-moz-range-thumb { width: 20px; height: 20px; border: 2px solid #fff; border-radius: 50%; background: var(--mariner); box-shadow: 0 2px 6px rgba(36,81,220,.35); pointer-events: auto; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.bt-range-slider__input::-moz-range-thumb:hover { transform: scale(1.15); box-shadow: 0 3px 10px rgba(36,81,220,.45); }
.bt-range-slider__input--max { z-index: 2; }
.bt-range-slider__input--min { z-index: 1; }
.bt-range-slider__values { display: flex; justify-content: space-between; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--shuttle); }
.bt-range-slider__value { white-space: nowrap; }

/* ===================== LOADER ===================== */
.bt-loader-overlay { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(247,249,252,.88); backdrop-filter: blur(4px); transition: opacity 200ms ease; }
.bt-loader-overlay.is-active { display: flex; opacity: 1; }
.bt-loader-overlay.is-hiding { opacity: 0; }

.bt-loader { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.bt-loader__ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid transparent; }
.bt-loader__ring--outer { border-top-color: var(--mariner); border-right-color: var(--malibu); animation: bt-loader-spin 1.6s linear infinite; }
.bt-loader__ring--middle { inset: 14px; border-bottom-color: var(--denim); border-left-color: var(--periwinkle); animation: bt-loader-spin 1.2s linear infinite reverse; }
.bt-loader__ring--inner { inset: 28px; border-top-color: var(--tory); border-right-color: var(--malibu); animation: bt-loader-spin 0.9s linear infinite; }

.bt-loader__logo { position: relative; z-index: 1; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--mariner) 0%, var(--denim) 100%); box-shadow: 0 6px 20px rgba(36,81,220,.3), inset 0 -2px 6px rgba(0,0,0,.1); animation: bt-loader-pulse 1.4s ease-in-out infinite; }
.bt-loader__logo .bt-icon { width: 26px; height: 26px; color: #fff; }

.bt-loader__text { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); font-size: 13px; font-weight: 700; color: var(--shuttle); white-space: nowrap; letter-spacing: .02em; }
.bt-loader__text::after { content: ''; animation: bt-loader-dots 1.4s steps(4, end) infinite; }

@keyframes bt-loader-spin { to { transform: rotate(360deg); } }
@keyframes bt-loader-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes bt-loader-dots { 0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; } 100% { content: ''; } }

/* Fallback — старый класс на всякий случай */
.bt-spinner { display: none; }

/* ===================== NOTICES ===================== */
.bt-notice { position: fixed; top: 20px; right: 20px; z-index: 10000; padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; color: #fff; opacity: 0; transform: translateX(100px); transition: all 300ms ease; box-shadow: 0 4px 14px rgba(0,0,0,.15); max-width: 350px; }
.bt-notice.is-show { opacity: 1; transform: translateX(0); }
.bt-notice--success { background: var(--jewel); }
.bt-notice--error { background: #dc2626; }

@media (max-width: 720px) {
  .bt-notice { top: auto; bottom: 20px; right: 16px; left: 16px; max-width: none; transform: translateY(100px); }
  .bt-notice.is-show { transform: translateY(0); }
}

/* ===================== FIELD ERRORS ===================== */
.bt-modal__field-error { color: #dc2626; font-size: 12px; margin-top: 4px; }
.bt-modal__field.has-error .bt-modal__input,
.bt-modal__input.has-error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important; }
.bt-modal__socials-empty { font-size: 13px; color: var(--gray-ch); }

/* ===================== PASSWORD EYE TOGGLE ===================== */
.bt-input-wrp { position: relative; }
.bt-input-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--gray-ch); padding: 4px; display: flex; align-items: center; justify-content: center; }
.bt-input-eye:hover { color: var(--shuttle); }
.bt-input-eye .bt-icon { font-size: 16px; }
.bt-input-wrp .bt-modal__input { padding-right: 40px; }
.bt-input-wrp ~ .bt-modal__label { left: 14px; top: 50%; transform: translateY(-50%); }
.bt-modal__label--static { position: static; transform: none; font-size: 13px; font-weight: 700; color: var(--cape); margin-bottom: 6px; display: block; }
.bt-modal__textarea { min-height: 100px; padding-top: 22px; resize: vertical; }

/* ===================== CAPTCHA ===================== */
.bt-captcha-wrapper { margin-bottom: 16px; }
.g-recaptcha, .smart-captcha { min-height: 78px; }
.bt-image-captcha { display: flex; align-items: center; gap: 8px; }
.bt-captcha-img { height: 50px; border-radius: 8px; border: 1px solid var(--iron); }
.bt-captcha-refresh { width: 38px; height: 50px; border: 1px solid var(--iron); border-radius: 8px; background: #fff; cursor: pointer; font-size: 18px; color: var(--shuttle); transition: all var(--transition); }
.bt-captcha-refresh:hover { background: var(--athens-2); color: var(--shark); }
.bt-captcha-input { margin-top: 8px; }



/* ===================== YA SOCIAL ICON ===================== */
.bt-modal__ya { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: #fc3f1d; color: #fff; border-radius: 50%; font-size: 12px; font-weight: 900; }

/* ===================== LEAD MODAL ===================== */
.bt-modal--lead .bt-modal__dialog { max-width: 560px; }
.bt-modal--lead .bt-modal__body { padding: 0; }
.bt-modal--lead .bt-modal__title { padding: 20px 24px 0; margin: 0; border-bottom: none; }
.bt-modal--lead .bt-modal__subtitle { padding: 0 24px; margin-bottom: 16px; }
.bt-modal--lead .bt-lead__form { padding: 0 24px 24px; }
.bt-modal--lead .bt-form-field { margin-bottom: 16px; }
.bt-modal__textarea { height: auto; min-height: 80px; padding: 12px 14px; resize: vertical; }

/* Review rating stars */
.bt-review-rating { display: inline-flex; gap: 6px; }
.bt-review-rating__star { display: inline-flex; cursor: pointer; line-height: 1; }
.bt-review-rating__star input { position: absolute; opacity: 0; pointer-events: none; }
.bt-review-rating__star .bt-icon { font-size: 28px; color: var(--iron); transition: color .15s ease, transform .15s ease; }
.bt-review-rating__star:hover .bt-icon { transform: scale(1.1); }
.bt-review-rating__star.is-on .bt-icon { color: var(--selective); }
.bt-review-rating__star.is-hover .bt-icon { color: var(--selective); }
.bt-modal__consent { font-size: 12px; color: var(--gray-ch); text-align: center; margin-top: 12px; }
.bt-modal__consent a { color: var(--denim); }

/* ===================== CONTENT PAGES ===================== */
.bt-main--content { display: block; padding: 22px 34px 34px; max-width: var(--content-width); margin: 0 auto; width: 100%; }
.bt-content-page { max-width: 900px; margin: 0 auto; }
.bt-content-head { margin-bottom: 24px; }
.bt-content-head h1 { font-size: 28px; font-weight: 700; color: var(--shark); margin-bottom: 8px; }
.bt-content-sub { font-size: 16px; color: var(--shuttle); }
.bt-page-content { font-size: 16px; line-height: 1.7; color: var(--shark); }
.bt-page-content h2 { font-size: 22px; margin: 24px 0 12px; }
.bt-page-content p { margin-bottom: 14px; }
.bt-page-content img { border-radius: 12px; margin: 16px 0; }

/* ===================== ARTICLES ===================== */
.bt-article-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bt-cat-chip { padding: 8px 16px; font-size: 14px; color: var(--cape); border: 1px solid var(--iron); border-radius: var(--radius-pill); background: #fff; transition: all var(--transition); }
.bt-cat-chip:hover { border-color: var(--malibu); background: var(--zircon); }
.bt-cat-chip.is-active { background: var(--mariner); border-color: var(--mariner); color: #fff; }
.bt-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.bt-article-card { background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); overflow: hidden; transition: box-shadow var(--transition), border-color var(--transition); }
.bt-article-card:hover { box-shadow: var(--shadow-hover); border-color: var(--periwinkle); }
.bt-article-card__cover img { width: 100%; height: 200px; object-fit: cover; display: block; }
.bt-article-card__body { padding: 18px; }
.bt-article-card__cat { display: inline-block; font-size: 12px; color: var(--mariner); font-weight: 700; margin-bottom: 8px; }
.bt-article-card__title { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.bt-article-card__title a { color: var(--shark); }
.bt-article-card__title a:hover { color: var(--mariner); }
.bt-article-card__excerpt { font-size: 14px; color: var(--shuttle); line-height: 1.5; margin-bottom: 10px; }
.bt-article-card__meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray-ch); }
.bt-article-detail { margin-bottom: 40px; }
.bt-article-detail__cat { display: inline-block; font-size: 13px; color: var(--mariner); font-weight: 700; margin-bottom: 8px; }
.bt-article-detail h1 { font-size: 30px; font-weight: 700; color: var(--shark); margin-bottom: 12px; }
.bt-article-detail__meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-ch); margin-bottom: 20px; }
.bt-article-detail__cover { width: 100%; border-radius: var(--radius-card); margin-bottom: 20px; }
.bt-article-detail__lead { font-size: 18px; color: var(--shuttle); line-height: 1.5; margin-bottom: 20px; }
.bt-article-detail__content { font-size: 16px; line-height: 1.7; color: var(--shark); }
.bt-article-detail__content h2 { font-size: 22px; margin: 24px 0 12px; }
.bt-article-detail__content p { margin-bottom: 14px; }
.bt-related h2 { font-size: 22px; margin-bottom: 16px; }

/* ===================== SERVICES ===================== */
.bt-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bt-service-card { background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); padding: 24px; transition: all var(--transition); text-decoration: none; color: var(--shark); }
.bt-service-card:hover { box-shadow: var(--shadow-hover); border-color: var(--periwinkle); }
.bt-service-card__icon { width: 48px; height: 48px; margin-bottom: 14px; }
.bt-service-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bt-service-card__desc { font-size: 14px; color: var(--shuttle); line-height: 1.5; margin-bottom: 14px; }
.bt-service-card__link { color: var(--mariner); font-weight: 700; font-size: 14px; }
.bt-service-detail h1 { font-size: 30px; margin-bottom: 16px; }
.bt-service-detail__lead { font-size: 18px; color: var(--shuttle); margin-bottom: 20px; }
.bt-service-detail__content { font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
.bt-service-companies h2 { font-size: 22px; margin-bottom: 16px; }

/* ===================== PROFILE ===================== */
.bt-main--profile { display: block; padding: 22px 34px 34px; max-width: var(--content-width); margin: 0 auto; }
.bt-profile__layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.bt-profile__sidebar { background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); padding: 20px; position: sticky; top: 80px; }
.bt-profile__user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--athens); margin-bottom: 16px; }
.bt-profile__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mariner); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex: 0 0 44px; }
.bt-profile__name { font-size: 15px; font-weight: 700; color: var(--shark); }
.bt-profile__email { font-size: 12px; color: var(--shuttle); }
.bt-profile__nav { display: flex; flex-direction: column; gap: 4px; }
.bt-profile__tab { padding: 10px 12px; font-size: 14px; color: var(--shuttle); border-radius: 8px; transition: all var(--transition); text-decoration: none; }
.bt-profile__tab:hover { background: var(--athens-2); color: var(--shark); }
.bt-profile__tab.is-active { background: var(--zircon); color: var(--mariner); font-weight: 700; }
.bt-profile__content { background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); padding: 24px; min-height: 400px; }
.bt-profile__panel { display: none; }
.bt-profile__panel.is-active { display: block; }
.bt-profile__panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.bt-profile__panel-head h2 { margin: 0; }
.bt-profile__panel h2 { font-size: 20px; margin-bottom: 20px; }
.bt-profile__panel h3 { font-size: 16px; margin: 8px 0 10px; color: var(--shark); }
.bt-profile__hint { font-size: 13px; color: var(--shuttle); margin-bottom: 14px; line-height: 1.4; }
.bt-profile__hint--warning { color: var(--brandy); }
.bt-profile__divider { border: 0; border-top: 1px solid var(--athens); margin: 22px 0 12px; }
.bt-profile__form { max-width: 400px; }

/* Toggle group */
.bt-toggle-group { display: inline-flex; gap: 4px; padding: 4px; background: var(--athens-2); border-radius: 10px; margin-bottom: 18px; }
.bt-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 14px; color: var(--shuttle); border-radius: 8px; transition: all .15s ease; }
.bt-toggle:hover { color: var(--shark); }
.bt-toggle.is-active { background: #fff; color: var(--mariner); font-weight: 700; box-shadow: 0 1px 3px rgba(16,35,63,.06); }
.bt-toggle__badge { min-width: 18px; height: 18px; padding: 0 5px; background: var(--cinnabar); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.bt-toggle-panel { display: none; }
.bt-toggle-panel.is-active { display: block; }

/* Leads / reviews */
.bt-leads-list, .bt-reviews-list { display: flex; flex-direction: column; gap: 12px; }
.bt-lead-item { padding: 16px; border: 1px solid var(--athens); border-radius: 12px; }
.bt-lead-item.is-unread { background: var(--zircon-2); border-color: var(--periwinkle); }
.bt-lead-item__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 12px; }
.bt-lead-item__side { display: flex; flex-direction: column; gap: 2px; }
.bt-lead-item__company { font-weight: 700; color: var(--shark); }
.bt-lead-item__source { font-size: 12px; color: var(--shuttle); }
.bt-lead-item__status { font-size: 12px; padding: 3px 10px; border-radius: var(--radius-pill); flex: 0 0 auto; }
.bt-lead-item__status--new { background: #dbeafe; color: #2563eb; }
.bt-lead-item__status--contacted { background: #fef3c7; color: #d97706; }
.bt-lead-item__status--qualified { background: #d1fae5; color: #059669; }
.bt-lead-item__status--closed { background: var(--athens-2); color: var(--shuttle); }
.bt-lead-item__status--rejected { background: #fee2e2; color: #dc2626; }
.bt-lead-item__msg { font-size: 14px; color: var(--shuttle); margin-bottom: 10px; }
.bt-lead-item__foot { display: flex; justify-content: space-between; align-items: center; }
.bt-lead-item__date { font-size: 12px; color: var(--gray-ch); }
.bt-lead-item__view { font-size: 13px; color: var(--mariner); font-weight: 600; }
.bt-lead-item__view:hover { text-decoration: underline; }
.bt-lead-item__msg { font-size: 14px; color: var(--shuttle); margin-bottom: 6px; }
.bt-lead-item__date { font-size: 12px; color: var(--gray-ch); }
.bt-review-item { padding: 16px; border: 1px solid var(--athens); border-radius: 12px; }
.bt-review-item__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 12px; }
.bt-review-item__side { display: flex; flex-direction: column; gap: 2px; }
.bt-review-item__company { font-weight: 700; color: var(--mariner); }
.bt-review-item__source { font-size: 12px; color: var(--shuttle); }
.bt-review-item__rating { display: flex; gap: 2px; flex: 0 0 auto; }
.bt-review-item__rating .bt-icon { font-size: 14px; color: var(--iron); }
.bt-review-item__rating .bt-icon.is-on { color: var(--selective); }
.bt-review-item__text { font-size: 14px; color: var(--shuttle); margin-bottom: 10px; }
.bt-review-item__foot { display: flex; justify-content: space-between; align-items: center; }
.bt-review-item__date { font-size: 12px; color: var(--gray-ch); }
.bt-review-item__toggle { font-size: 13px; color: var(--mariner); font-weight: 600; }
.bt-review-item__toggle:hover { text-decoration: underline; }

/* My companies */
.bt-my-companies { display: flex; flex-direction: column; gap: 12px; }
.bt-my-company { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 16px; border: 1px solid var(--athens); border-radius: 12px; transition: box-shadow .15s ease; }
.bt-my-company:hover { box-shadow: 0 2px 8px rgba(16,35,63,.05); }
.bt-my-company__main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.bt-my-company__logo { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex: 0 0 48px; background: var(--athens-2); display: flex; align-items: center; justify-content: center; }
.bt-my-company__logo img { width: 100%; height: 100%; object-fit: cover; }
.bt-my-company__logo span { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.bt-my-company__info { min-width: 0; }
.bt-my-company__name { font-weight: 700; color: var(--shark); font-size: 15px; margin-bottom: 4px; }
.bt-my-company__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--shuttle); flex-wrap: wrap; }
.bt-my-company__status { padding: 2px 8px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }
.bt-my-company__status--pending { background: #fef3c7; color: #d97706; }
.bt-my-company__status--approved { background: #d1fae5; color: #059669; }
.bt-my-company__status--rejected { background: #fee2e2; color: #dc2626; }
.bt-my-company__stat { display: inline-flex; align-items: center; gap: 4px; }
.bt-my-company__stat i { color: var(--gray-ch); }
.bt-my-company__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.bt-my-company__btn { padding: 7px 12px; font-size: 13px; color: var(--shuttle); background: var(--athens-2); border-radius: 8px; transition: all .15s ease; }
.bt-my-company__btn:hover { background: var(--athens); color: var(--shark); }
.bt-my-company__btn--danger { color: var(--cinnabar); background: rgba(239,68,68,.08); }
.bt-my-company__btn--danger:hover { background: var(--cinnabar); color: #fff; }

/* ===================== COMPANY FORM ===================== */
.bt-company-form-page { background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); padding: 24px; box-shadow: 0 1px 4px rgba(16,35,63,.04); }
.bt-company-form-page__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.bt-company-form-page__title { margin: 0; font-size: 24px; font-weight: 700; color: var(--shark); }
.bt-company-form-page__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--mariner); padding: 8px 14px; border: 1px solid var(--periwinkle); border-radius: 10px; background: var(--zircon); transition: all var(--transition); }
.bt-company-form-page__back:hover { background: var(--periwinkle); color: var(--denim); }
.bt-company-form-page .bt-company-form { display: block; position: static; z-index: auto; background: transparent; padding: 0; }
.bt-company-form-page .bt-company-form > form { width: 100%; max-width: 720px; max-height: none; overflow-y: visible; background: transparent; border-radius: 0; padding: 0; box-shadow: none; border: none; }
.bt-company-form { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(16,35,63,.45); backdrop-filter: blur(2px); align-items: center; justify-content: center; padding: 20px; }
.bt-company-form.is-open { display: flex; }
.bt-company-form > form { width: 100%; max-width: 720px; max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 20px 60px rgba(16,35,63,.18); }
.bt-inline-form { display: inline-block; margin: 0; }
.bt-company-form__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.bt-company-form__header h3 { margin: 0; font-size: 18px; }
.bt-company-form__close { font-size: 13px; color: var(--shuttle); display: inline-flex; align-items: center; gap: 6px; }
.bt-company-form__close:hover { color: var(--shark); }
.bt-company-form__section { margin-bottom: 24px; }
.bt-company-form__section--publish { padding-top: 14px; }
.bt-company-form__section-title { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--shark); margin-bottom: 18px; font-size: 16px; }
.bt-company-form__section-step { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: var(--zircon); color: var(--mariner); border: 1px solid var(--periwinkle); border-radius: 50%; font-size: 14px; }
.bt-company-form__hint { font-size: 12px; color: var(--shuttle); margin-top: 6px; margin-bottom: 14px; line-height: 1.4; }
.bt-company-form__field-note { font-size: 12px; color: var(--shuttle); margin-top: 4px; margin-bottom: 0; line-height: 1.4; }
.bt-company-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bt-company-form__field { margin-bottom: 18px; }
.bt-company-form__field-label { font-size: 13px; color: var(--shark); font-weight: 600; margin-bottom: 10px; }
.bt-company-form__field--with-btn { position: relative; }
.bt-company-form__suffix-btn { font-size: 12px; color: var(--mariner); background: var(--zircon); padding: 5px 10px; border-radius: 6px; }
.bt-company-form__suffix-btn:hover { background: var(--periwinkle); }
.bt-company-form__slug-group { display: flex; align-items: stretch; gap: 0; flex-wrap: nowrap; }
.bt-company-form__slug-prefix { display: inline-flex; align-items: center; padding: 0 12px; font-size: 14px; color: var(--shuttle); background: var(--athens-3); border: 1px solid var(--athens); border-right: none; border-radius: 10px 0 0 10px; white-space: nowrap; }
.bt-company-form__slug-input { flex: 1 1 0; border-radius: 0 10px 10px 0; }
.bt-company-form__slug-group .bt-company-form__suffix-btn { align-self: center; margin-left: 8px; }

.bt-company-form__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.bt-company-form__logo-preview { width: 80px; height: 80px; border-radius: 12px; background: var(--athens-2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bt-company-form__logo-preview img { width: 100%; height: 100%; object-fit: cover; }
.bt-company-form__logo-placeholder { color: var(--gray-ch); font-size: 24px; }
.bt-company-form__logo-btn { cursor: pointer; }
.bt-company-form__logo-btn input { display: none; }
.bt-company-form__logo-btn span { padding: 8px 14px; background: var(--zircon); color: var(--mariner); border-radius: 8px; font-size: 13px; font-weight: 600; }
.bt-company-form__logo-btn span:hover { background: var(--periwinkle); }

.bt-company-form__chips { display: flex; flex-wrap: wrap; gap: 8px; max-height: 220px; overflow-y: auto; padding-right: 4px; }
.bt-company-form__regions-search { position: relative; margin-bottom: 10px; }
.bt-company-form__regions-search i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--gray-ch); }
.bt-company-form__regions-search input { width: 100%; max-width: 320px; height: 42px; padding: 0 12px 0 36px; font-size: 14px; border: 1px solid var(--athens); border-radius: 10px; outline: none; }
.bt-company-form__regions-search input:focus { border-color: var(--mariner); box-shadow: 0 0 0 3px rgba(138,164,255,.18); }
.bt-company-form__chip.is-hidden { display: none; }
.bt-company-form__chip { display: inline-flex; padding: 6px 12px; border: 1px solid var(--iron); border-radius: 7px; font-size: 13px; color: var(--shuttle); background: #fff; cursor: pointer; transition: all .15s ease; }
.bt-company-form__chip input { display: none; }
.bt-company-form__chip.is-active { background: var(--zircon); border-color: var(--mariner); color: var(--mariner); font-weight: 600; }

/* Select */
.bt-select { appearance: none; -webkit-appearance: none; width: 100%; height: 46px; padding: 0 36px 0 12px; font: inherit; font-size: 14px; color: var(--shark); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235F6368' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1px solid var(--athens); border-radius: 10px; cursor: pointer; }
.bt-select:focus { outline: none; border-color: var(--mariner); }
.bt-select option { color: var(--shark); }

/* Number field */
.bt-number-field { position: relative; display: flex; flex-direction: column; gap: 6px; }
.bt-number-field__wrap { position: relative; }
.bt-number-field__btns { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 4px; z-index: 2; }
.bt-number-field .bt-number { text-align: left; padding: 0 14px; padding-right: 78px; -moz-appearance: textfield; height: 46px; }
.bt-number-field .bt-number::-webkit-outer-spin-button, .bt-number-field .bt-number::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bt-number-btn { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--shark); background: var(--athens-2); border: 1px solid var(--iron); transition: background var(--transition), border-color var(--transition), color var(--transition); }
.bt-number-btn:hover { background: var(--athens); border-color: var(--aluminium); color: var(--shark); }
.bt-number-btn:active { transform: scale(.95); }
.bt-number-field .bt-field-error { order: 3; margin-top: 0; }

/* Tags */
.bt-tags-field { display: flex; flex-direction: column; gap: 10px; }
.bt-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bt-tag--company { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px 5px 12px; background: var(--zircon); color: var(--mariner); border: 1px solid var(--periwinkle); border-radius: var(--radius-pill); font-size: 13px; }
.bt-tag--company button { color: var(--mariner); font-size: 12px; }
.bt-tag--company button:hover { color: var(--cinnabar); }
.bt-tags-input-wrap { display: flex; gap: 8px; }
.bt-tags-input-wrap .bt-modal__input { flex: 1; }

/* WYSIWYG */
.bt-wysiwyg { border: 1px solid var(--athens); border-radius: 10px; overflow: hidden; }
.bt-wysiwyg-toolbar { display: flex; gap: 4px; padding: 8px; background: var(--athens-2); border-bottom: 1px solid var(--athens); flex-wrap: wrap; }
.bt-wysiwyg-toolbar button { width: 32px; height: 32px; border-radius: 6px; background: #fff; border: 1px solid var(--athens); color: var(--shark); font-size: 13px; display: flex; align-items: center; justify-content: center; }
.bt-wysiwyg-toolbar button:hover { background: var(--zircon); border-color: var(--mariner); color: var(--mariner); }
.bt-wysiwyg-editor { min-height: 180px; padding: 12px; font: inherit; line-height: 1.5; outline: none; }
.bt-wysiwyg-editor:focus { background: #fff; }
.bt-wysiwyg-editor ul, .bt-wysiwyg-editor ol { margin-left: 20px; }
.bt-wysiwyg-editor h2 { font-size: 18px; margin: 12px 0 8px; }
.bt-wysiwyg-editor h3 { font-size: 16px; margin: 10px 0 6px; }

.bt-company-form__switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.bt-company-form__switch input { display: none; }
.bt-company-form__switch-slider { width: 40px; height: 22px; background: var(--athens); border-radius: 999px; position: relative; transition: background .15s ease; }
.bt-company-form__switch-slider::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .15s ease; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.bt-company-form__switch input:checked + .bt-company-form__switch-slider { background: var(--mariner); }
.bt-company-form__switch input:checked + .bt-company-form__switch-slider::after { transform: translateX(18px); }
.bt-company-form__switch input:disabled + .bt-company-form__switch-slider { opacity: .5; }
.bt-company-form__switch-label { font-size: 14px; color: var(--shark); }

.bt-company-form__footer { display: flex; gap: 12px; justify-content: flex-start; padding-top: 14px; border-top: 1px solid var(--athens); }

.bt-service-row { display: flex; flex-wrap: nowrap; gap: 10px; align-items: center; margin-bottom: 12px; padding: 12px; border: 1px solid var(--athens-2); border-radius: 12px; background: var(--athens-3); }
.bt-service-row .bt-select { flex: 1 1 0; min-width: 180px; }
.bt-service-row__price { flex: 0 1 140px; min-width: 120px; height: 46px; }
.bt-service-row__period { flex: 0 1 130px; min-width: 110px; }
.bt-service-row__remove { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--cinnabar); background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); transition: all var(--transition); }
.bt-service-row__remove:hover { background: var(--cinnabar); color: #fff; border-color: var(--cinnabar); }
.bt-service-row__remove i { font-size: 14px; }

/* Field errors */
.bt-field-error { display: none; font-size: 12px; color: var(--cinnabar); margin-top: 4px; margin-bottom: 8px; }
.bt-field-error.is-visible { display: block; }
.bt-modal__field.is-error .bt-modal__input { border-color: var(--cinnabar); }

/* Small buttons */
.bt-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all .15s ease; }
.bt-btn--primary { background: var(--mariner); color: #fff; }
.bt-btn--primary:hover { background: var(--denim); }
.bt-btn--outline { background: #fff; color: var(--mariner); border: 1px solid var(--mariner); }
.bt-btn--outline:hover { background: var(--zircon); }
.bt-btn--ghost { color: var(--shuttle); }
.bt-btn--ghost:hover { color: var(--shark); background: var(--athens-2); }

/* Modal confirm */
.bt-confirm { display: none; position: fixed; inset: 0; z-index: 1200; background: rgba(16,35,63,.45); align-items: center; justify-content: center; padding: 20px; }
.bt-confirm.is-open { display: flex; }
.bt-confirm__box { background: #fff; border-radius: 14px; padding: 24px; max-width: 420px; width: 100%; }
.bt-confirm__title { font-size: 18px; font-weight: 700; color: var(--shark); margin-bottom: 8px; }
.bt-confirm__text { font-size: 14px; color: var(--shuttle); margin-bottom: 20px; }
.bt-confirm__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ===================== EMPTY STATE ===================== */
.bt-empty { text-align: center; padding: 40px 20px; font-size: 16px; color: var(--gray-ch); }
.bt-empty > p { margin-bottom: 14px; }

.bt-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 260px; padding: 40px 20px; color: var(--gray-ch); }
.bt-empty-state__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--athens-2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--mariner); font-size: 28px; }
.bt-empty-state__title { font-size: 18px; font-weight: 700; color: var(--shark); margin-bottom: 8px; }
.bt-empty-state__text { font-size: 14px; line-height: 1.45; max-width: 360px; margin-bottom: 18px; }
.bt-empty-state__text a { color: var(--mariner); text-decoration: underline; }
.bt-empty-state__action { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.bt-lead-detail { background: #fff; padding: 24px; }
.bt-lead-detail__row { display: flex; gap: 12px; margin-bottom: 8px; font-size: 14px; }
.bt-lead-detail__label { color: var(--shuttle); min-width: 110px; }
.bt-lead-detail__value { color: var(--shark); }
.bt-lead-detail__message { margin: 16px 0; padding: 14px; background: var(--athens-2); border-radius: 10px; }
.bt-lead-detail__message p { margin-top: 8px; color: var(--shark); line-height: 1.5; }
.bt-lead-detail__status-change { margin-top: 18px; }
.bt-lead-detail__status-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.bt-status-btn { padding: 6px 12px; font-size: 13px; border: 1px solid var(--athens); border-radius: 8px; color: var(--shuttle); cursor: pointer; background: #fff; transition: all .15s ease; }
.bt-status-btn:hover { border-color: var(--mariner); color: var(--mariner); }
.bt-status-btn.is-active { background: var(--mariner); border-color: var(--mariner); color: #fff; }

/* Chats */
.bt-chats { display: flex; flex-direction: column; gap: 8px; }
.bt-chat-item { display: flex; gap: 12px; padding: 12px; border: 1px solid var(--athens); border-radius: 12px; cursor: pointer; transition: all .15s ease; }
.bt-chat-item:hover { background: var(--zircon-2); border-color: var(--periwinkle); }
.bt-chat-item__avatar { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex: 0 0 48px; background: var(--athens-2); }
.bt-chat-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.bt-chat-item__avatar span { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.bt-chat-item__body { min-width: 0; flex: 1; }
.bt-chat-item__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.bt-chat-item__name { font-weight: 700; color: var(--shark); font-size: 14px; }
.bt-chat-item__date { font-size: 12px; color: var(--gray-ch); }
.bt-chat-item__preview { font-size: 13px; color: var(--shuttle); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.bt-chat-item__with { font-size: 12px; color: var(--gray-ch); }

/* ===================== CHATS PAGE (messenger layout) ===================== */
.bt-main--chats { padding: 18px; overflow: hidden; }
.bt-main--chats .bt-profile--chats { max-width: 100%; }
.bt-main--chats .bt-page { overflow: hidden; }
.bt-chat-layout { display: grid; grid-template-columns: 340px 1fr; gap: 0; height: calc(100vh - 180px); max-height: calc(100vh - 180px); background: #fff; border: 1px solid var(--athens); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.bt-chat-layout__list { border-right: 1px solid var(--athens); display: flex; flex-direction: column; min-height: 0; grid-column: 1; }
.bt-chat-layout__room { display: flex; flex-direction: column; min-height: 0; background: var(--athens-3); grid-column: 2; }
.bt-chat-layout__list-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--athens); flex: 0 0 auto; }
.bt-chat-layout__title { margin: 0; font-size: 18px; font-weight: 700; color: var(--shark); }
.bt-chat-layout__head-actions { display: flex; align-items: center; gap: 8px; }
.bt-chat-layout__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--mariner); padding: 8px 14px; border: 1px solid var(--periwinkle); border-radius: 10px; background: var(--zircon); transition: all var(--transition); }
.bt-chat-layout__back:hover { background: var(--periwinkle); color: var(--denim); }
.bt-chat-layout__close { display: none; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--athens); background: #fff; color: var(--shark); align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.bt-chat-layout__close:hover { background: var(--athens-2); color: var(--cinnabar); border-color: var(--cinnabar); }

.bt-chats--page { padding: 10px; overflow-y: auto; flex: 1; min-height: 0; }
.bt-chats--page .bt-chat-item { display: flex; gap: 12px; padding: 12px; border: 1px solid var(--athens); border-radius: 12px; cursor: pointer; transition: all .15s ease; text-decoration: none; color: inherit; }
.bt-chats--page .bt-chat-item:hover { background: var(--zircon-2); border-color: var(--periwinkle); }
.bt-chats--page .bt-chat-item.is-active { background: var(--zircon); border-color: var(--mariner); }
.bt-chat-item__unread { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; margin-left: 6px; background: var(--cinnabar); color: #fff; border-radius: 10px; font-size: 11px; font-weight: 700; }


.bt-chat-room--page { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.bt-chat-room--page .bt-chat-room__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: #fff; border-bottom: 1px solid var(--athens); flex: 0 0 auto; }
.bt-chat-room--page .bt-chat-room__company { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--shark); min-width: 0; }
.bt-chat-room--page .bt-chat-room__avatar { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 8px; object-fit: cover; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; overflow: hidden; }
.bt-chat-room--page .bt-chat-room__company-name { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-chat-room__actions { display: flex; align-items: center; gap: 8px; }
.bt-chat-room__back, .bt-chat-room__dialogs-btn { display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--mariner); padding: 8px 14px; border: 1px solid var(--periwinkle); border-radius: 10px; background: var(--zircon); transition: all var(--transition); }
.bt-chat-room__back:hover, .bt-chat-room__dialogs-btn:hover { background: var(--periwinkle); color: var(--denim); }
.bt-chat-room__dialogs-btn.is-active { background: var(--mariner); color: #fff; border-color: var(--mariner); }
.bt-chat-room--page .bt-chat-room__messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.bt-chat-room__empty { text-align: center; color: var(--gray-ch); margin: auto 0; }
.bt-chat-message { display: flex; flex-direction: column; align-items: flex-start; }
.bt-chat-message--own { align-items: flex-end; }
.bt-chat-message__bubble { max-width: 75%; padding: 10px 14px; border-radius: 14px; background: #fff; color: var(--shark); font-size: 14px; line-height: 1.45; box-shadow: 0 1px 2px rgba(16,35,63,.06); }
.bt-chat-message--own .bt-chat-message__bubble { background: var(--mariner); color: #fff; }
.bt-chat-message.is-optimistic .bt-chat-message__bubble { opacity: .75; }
.bt-chat-message.is-error .bt-chat-message__bubble { background: var(--cinnabar); }
.bt-chat-message__meta { font-size: 11px; color: var(--gray-ch); margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.bt-chat-message--deleted .bt-chat-message__bubble { background: var(--athens-2); color: var(--gray-ch); font-style: italic; box-shadow: none; }
.bt-chat-message--own.bt-chat-message--deleted .bt-chat-message__bubble { background: var(--athens-2); color: var(--gray-ch); }
.bt-chat-message__delete { width: 18px; height: 18px; border-radius: 50%; border: none; background: transparent; color: var(--gray-ch); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; opacity: 0; transition: all .15s ease; }
.bt-chat-message:hover .bt-chat-message__delete { opacity: 1; }
.bt-chat-message__delete:hover { color: var(--cinnabar); }
.bt-chat-message__attachments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.bt-chat-attachment { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: #fff; border: 1px solid var(--athens); border-radius: 10px; text-decoration: none; color: var(--shark); font-size: 13px; transition: all .15s ease; }
.bt-chat-attachment:hover { border-color: var(--mariner); }
.bt-chat-attachment--image { padding: 4px; width: 140px; height: 100px; overflow: hidden; }
.bt-chat-attachment--image img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.bt-chat-attachment .bt-icon { font-size: 18px; color: var(--mariner); }
.bt-chat-attachment__name { max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-chat-attachment__size { color: var(--gray-ch); font-size: 11px; }
.bt-chat-room--page .bt-chat-room__contacts { padding: 8px 18px; background: #fff; border-top: 1px solid var(--athens); flex: 0 0 auto; }
.bt-chat-room__contacts-info { margin-top: 10px; padding: 10px; background: var(--athens-2); border-radius: 8px; }
.bt-chat-room__contacts-info[hidden] { display: none; }
.bt-chat-room__contact-row { font-size: 13px; color: var(--shuttle); margin-bottom: 4px; }
.bt-chat-room__contact-row span { color: var(--shark); font-weight: 600; }
.bt-chat-room--page .bt-chat-room__form { display: flex; flex-direction: column; padding: 0; background: #fff; border-top: 1px solid var(--athens); flex: 0 0 auto; }
.bt-chat-room__composer { padding: 12px 18px; display: flex; flex-direction: column; gap: 8px; }
.bt-chat-room__composer-row { display: flex; align-items: flex-end; gap: 10px; }
.bt-chat-room__input { flex: 1; min-height: 44px; max-height: 120px; resize: none; overflow-y: auto; padding: 12px 14px; line-height: 1.35; }
.bt-chat-room__file-list { display: flex; flex-wrap: wrap; gap: 6px; }
.bt-chat-room__file-btn { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--athens); background: #fff; color: var(--mariner); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s ease; flex: 0 0 auto; font-size: 18px; }
.bt-chat-room__file-btn:hover { background: var(--zircon); border-color: var(--mariner); }
.bt-chat-room__file-item { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--zircon); border: 1px solid var(--periwinkle); border-radius: 8px; font-size: 12px; color: var(--shark); }
.bt-chat-room__file-remove { width: 18px; height: 18px; border-radius: 50%; border: none; background: var(--athens); color: var(--shuttle); line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.bt-chat-room__file-remove:hover { background: var(--cinnabar); color: #fff; }
.bt-chat-room__submit { height: 44px; padding: 0 22px; border-radius: 12px; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; }

.bt-chat-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--gray-ch); text-align: center; padding: 40px 20px; }
.bt-chat-empty__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--athens-2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--mariner); font-size: 28px; }
.bt-chat-empty__title { font-size: 18px; font-weight: 700; color: var(--shark); margin-bottom: 8px; }
.bt-chat-empty__text { font-size: 14px; }

/* ===================== RESPONSIVE ===================== */

/* Планшет: фильтры под контентом, футер 2 колонки */
@media (max-width: 1180px) {
  .bt-main { flex-direction: column; align-items: stretch; padding: 18px; gap: 18px; }
  .bt-content { width: 100%; }
  .bt-aside { position: static; width: 100%; flex: none; }
  .bt-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bt-article-grid, .bt-service-grid { grid-template-columns: repeat(2, 1fr); }
  .bt-profile__layout { grid-template-columns: 1fr; }
  .bt-profile__sidebar { position: static; }
}

/* Узкий планшет / большой телефон: 2 колонки карточек */
@media (max-width: 900px) {
  .bt-companies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Мобильная версия (по макету 96:4, ширина 375px) */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .bt-header__inner { padding: 0 16px; gap: 8px; height: 64px; grid-template-columns: auto 1fr auto; }
  .bt-header__col--center { display: none; }
  .bt-header__col--right { justify-content: flex-end; gap: 8px; margin-right: -14px; }
  .bt-article-grid, .bt-service-grid { grid-template-columns: 1fr; }
  .bt-main--content, .bt-main--profile { padding: 14px; }
  .bt-content-head h1 { font-size: 22px; }
  .bt-article-detail h1 { font-size: 22px; }
  .bt-profile__nav { flex-direction: row; flex-wrap: wrap; }
  .bt-company-form__grid { grid-template-columns: 1fr; }
  .bt-service-row { flex-wrap: wrap; }
  .bt-service-row__price, .bt-service-row__period { flex: 1 1 120px; }
  .bt-my-company { flex-direction: column; align-items: flex-start; }
  .bt-company-form > form { padding: 16px; }
  .bt-toggle-group { width: 100%; }
  .bt-toggle { flex: 1; }
  .bt-header__fav, .bt-header__msg, .bt-header__leads, .bt-header__user, .bt-header__logout { padding: 0 12px; height: 38px; font-size: 14px; gap: 6px; }
  .bt-header__fav .bt-icon, .bt-header__msg .bt-icon, .bt-header__leads .bt-icon { font-size: 14px; }
  .bt-header__msg span:not(.bt-header__count), .bt-header__leads span:not(.bt-header__count), .bt-header__fav span:not(.bt-header__count) { display: none; }
  .bt-header__user span { display: none; }
  .bt-header__col--center { display: none; }
  .bt-header__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .bt-header__loc--desktop { display: none; }
  .bt-header__login { padding: 0 12px; height: 38px; font-size: 14px; gap: 6px; }
  .bt-header__login .bt-icon { font-size: 14px; }
  .bt-header__login span { display: none; }
  .bt-header__login:not(:has(> span)) { width: 38px; justify-content: center; padding: 0; }
  .bt-chat-layout { grid-template-columns: 1fr; position: fixed; inset: 0; z-index: 2000; height: 100vh; max-height: 100vh; border: none; border-radius: 0; }
  .bt-chat-layout__list { border-right: none; position: absolute; top: 0; left: 0; width: 85%; max-width: 320px; height: 100%; z-index: 10; background: #fff; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 4px 0 24px rgba(16,35,63,.12); }
  .bt-chat-layout__list.is-open { transform: translateX(0); }
  .bt-chat-layout__list.is-hidden { display: none; }
  .bt-chat-layout__room { min-height: 0; height: 100%; position: relative; z-index: 1; grid-column: auto; }
  .bt-chat-layout__room.is-full { display: flex; }
  .bt-chat-room__back, .bt-chat-room__dialogs-btn { display: inline-flex; }
  .bt-chat-layout__close { display: inline-flex; }
  .bt-desktop-hidden { display: inline; }
  .bt-main--chats { padding: 0; }
  .bt-main--chats .bt-breadcrumb { display: none; }
  .bt-main--chats .bt-profile--chats { padding: 0; }
  .bt-chat-room--page .bt-chat-room__messages { padding: 12px; }
  .bt-chat-room__composer { padding: 10px 12px; }
  .bt-chat-room__file-btn { width: 40px; height: 40px; }
  .bt-chat-room__submit { height: 40px; }
  html.bt-chat-mobile-open, body.bt-chat-mobile-open { overflow: hidden !important; height: 100% !important; max-height: 100% !important; touch-action: none; position: fixed; width: 100%; }
  html.bt-chat-mobile-open .bt-page, body.bt-chat-mobile-open .bt-page { overflow: hidden !important; height: 100% !important; max-height: 100% !important; }
  .bt-chat-message__bubble { max-width: 90%; }
  .bt-chat-layout__overlay { position: absolute; inset: 0; background: rgba(16,35,63,.35); z-index: 5; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .bt-chat-layout__overlay.is-visible { opacity: 1; pointer-events: auto; }
  .bt-chat-room--page .bt-chat-room__form { padding-bottom: env(safe-area-inset-bottom, 12px); }
  .bt-chat-room__composer { padding-bottom: calc(env(safe-area-inset-bottom, 0) + 12px); }

  .bt-modal { padding: 12px; }
  .bt-modal__dialog { max-width: 100%; border-radius: 14px; }
  .bt-modal__wrap { max-width: 100%; }
  .bt-modal__close { top: -10px; right: -6px; width: 32px; height: 32px; }
  .bt-modal__body { padding: 22px 20px 24px; }
  .bt-modal__title { font-size: 20px; }
  .bt-modal__bottom { padding: 14px 20px 18px; }
  .bt-modal__socials { flex-wrap: wrap; }
  .bt-modal__social { flex: 1 1 calc(50% - 5px); }

  .bt-main { padding: 14px; gap: 12px; }

  /* Hero banner */
  .bt-banner { margin-bottom: 12px; border-radius: 12px; }

  /* Hero */
  .bt-hero { border-radius: 12px; }
  .bt-hero__panel { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 16px; padding: 20px; }
  .bt-hero__icon { width: 56px; height: 56px; border-radius: 28px; }
  .bt-hero__icon .bt-icon { font-size: 28px; }
  .bt-hero__title { font-size: 22px; line-height: 26px; }
  .bt-hero__subtitle { font-size: 14px; line-height: 20px; }
  .bt-hero__hint { grid-column: 1; grid-row: auto; align-self: stretch; padding: 12px 0 0; font-size: 13px; flex-wrap: wrap; }

  /* Search */
  .bt-search { padding: 8px 8px 8px 14px; border-radius: 14px; }
  .bt-search__btn { width: 46px; height: 46px; border-radius: 23px; }
  .bt-search__btn .bt-icon { font-size: 18px; }

  /* Chips: вертикально по 1-2 */
  .bt-chips { gap: 8px; }
  .bt-chip { padding: 9px 12px; font-size: 13px; }

  /* Rating head — показываем кнопку Фильтры */
  .bt-rating-head { padding-top: 6px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .bt-rating-head__title { width: 100%; }
  .bt-rating-head__row { width: 100%; justify-content: space-between; align-items: center; }
  .bt-rating-head__name { font-size: 20px; }
  .bt-rating-head__sub { font-size: 14px; width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
  .bt-rating-head__city { width: 100%; justify-content: center; font-size: 14px; padding: 8px 12px; }
  .bt-rating-head__row-mobile { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; }
  .bt-rating-head__filters { display: inline-flex; font-size: 13px; padding: 5px 10px; }
  .bt-rating-head__count { align-self: flex-start; }
  .bt-filters-toggle { display: inline-flex; }

  /* Filters — aside превращается в мобильный drawer */
  .bt-aside { position: fixed; inset: 0; z-index: 900; display: none; flex-direction: column; background: #fff; padding: 0; margin: 0; width: 100%; max-width: 100%; }
  .bt-aside.is-open { display: flex; }
  .bt-aside__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; flex: 0 0 auto; border-bottom: 1px solid var(--athens); }
  .bt-aside__title { font-size: 18px; font-weight: 700; color: var(--shark); margin: 0; }
  .bt-aside__body { flex: 1 1 auto; overflow-y: auto; padding: 7.5px; }
  .bt-aside__body .bt-filter { padding: 12px; margin-bottom: 8px; border: 1px solid #E0E3E7; border-radius: 16px; background: #fff; }
  .bt-aside__body .bt-filter:last-child { margin-bottom: 0; }
  .bt-aside__foot { flex: 0 0 auto; padding: 14px 16px; border-top: 1px solid var(--athens); }
  .bt-aside__foot .bt-aside__submit { margin: 0; width: 100%; }
  .bt-aside__head .bt-link { font-size: 14px; }

  /* Мобильный drawer close button */
  .bt-filters-drawer { display: none; }
  .bt-filters-close-mobile { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: var(--shuttle); background: transparent; border: none; cursor: pointer; }
  .bt-filters-close-mobile:hover { background: var(--athens-2); color: var(--shark); }
  .bt-filters-close-mobile .bt-icon { font-size: 18px; }

  /* Companies: 1 колонка */
  .bt-companies { display: flex; flex-direction: column; gap: 10px; }
  .bt-company { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; grid-template-rows: auto auto auto auto; gap: 8px 10px; padding: 12px; border-radius: 14px; }
  .bt-company__rank { display: none; }
  .bt-company__avatar { grid-column: 1; grid-row: 1 / span 2; width: 44px; height: 44px; font-size: 18px; font-weight: 700; border-radius: 10px; align-self: start; }
  .bt-company__body { grid-column: 2 / span 2; grid-row: 1; display: flex; flex-direction: column; gap: 4px; }
  .bt-company__name { font-size: 15px; line-height: 1.3; }
  .bt-company__meta { font-size: 12px; line-height: 1.35; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .bt-company__meta > span { display: inline-flex; align-items: center; gap: 4px; }
  .bt-company__star { font-size: 11px; }
  .bt-company__tags { gap: 4px; margin-top: 2px; }
  .bt-company__tag { font-size: 10px; padding: 2px 6px; border-radius: 4px; }
  .bt-company__price { grid-column: 2; grid-row: 2; align-self: center; text-align: left; font-size: 14px; padding-top: 0; }
  .bt-company__arrow { display: none; }
  .bt-company__actions { grid-column: 1 / -1; grid-row: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--athens); }
  .bt-company__action { flex-direction: column; justify-content: center; padding: 8px 4px; font-size: 11px; gap: 4px; border-radius: 8px; background: var(--athens-3); border: 1px solid var(--athens); }
  .bt-company__action .bt-icon { font-size: 16px; }
  .bt-company__action span { font-size: 10px; line-height: 1.1; }
  .bt-company__action--ai { color: var(--mariner); }
  .bt-company__action--ai:hover { background: var(--zircon); }
  .bt-company__action--chat { color: var(--mariner); }
  .bt-company__action--chat:hover { background: var(--zircon); }
  .bt-company__action--favorite { color: var(--mariner); }
  .bt-company__action--favorite:hover { background: var(--zircon); }
  .bt-company__action--favorite.is-active { background: var(--mariner); color: #fff; }
  .bt-company__action--favorite.is-remove { color: var(--cinnabar); background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.2); }
  .bt-company__action--favorite.is-remove:hover { background: rgba(239,68,68,.12); }
  .bt-company__action--favorite.is-remove.is-active { background: var(--cinnabar); color: #fff; border-color: var(--cinnabar); }
  .bt-company__action--profile { color: var(--shuttle); }
  .bt-company__action--profile:hover { background: var(--athens-2); }

  /* Filters (внутри drawer) */
  .bt-filter { padding: 12px 0; }
  .bt-filter__title { font-size: 14px; }
  .bt-tag { padding: 8px 11px; font-size: 12px; }
  .bt-range__field { padding: 6px 8px; }
  .bt-range__input { font-size: 14px; }
  .bt-range__input::placeholder { font-size: 12px; }
  .bt-aside__submit { padding: 13px 6px 14px; font-size: 15px; border-radius: 8px; }

  /* Footer */
  .bt-footer__inner { padding: 24px 16px 18px; }
  .bt-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .bt-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bt-footer__legal { gap: 16px; }
}

/* Очень узкие экраны */
@media (max-width: 480px) {
  .bt-hero__title { font-size: 20px; line-height: 24px; }
  .bt-rating-head__name { font-size: 18px; }
  .bt-company__name { font-size: 16px; }
  .bt-company { padding: 14px; }
  .bt-chip { padding: 8px 11px; font-size: 12px; }
}