:root {
  --header-gradient: #000;
  --header-shadow:   0 2px 5px 0 rgba(0,0,0,.05);
  --nav-color:       #fff;
  --nav-font-size:   16px;
  --nav-font-weight: 500;
  --logo-size:       36px;
  --header-h:        60px;
  --burger-size:     22px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FFF;
  color: #1A1A2E;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-h);
  background: var(--header-gradient);
  box-shadow: var(--header-shadow);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__icon {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  border: 2px solid #ef4c00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.site-logo__icon span {
  color: #F4511E;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.site-logo__name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.site-logo__tagline {
  color: rgba(255,255,255,.75);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav__link {
  color: var(--nav-color);
  font-family: 'Inter', sans-serif;
  font-size: var(--nav-font-size);
  font-weight: var(--nav-font-weight);
  text-decoration: none;
  line-height: normal;
  position: relative;
  transition: opacity .2s;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: width .25s ease;
}

.site-nav__link:hover { opacity: .85; }
.site-nav__link:hover::after { width: 100%; }

.site-nav__link.is-active::after { width: 100%; }
.site-nav__link.is-active { opacity: 1; }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background .2s;
  flex-shrink: 0;
}

.site-header__burger:hover { background: rgba(255,255,255,.15); }

.site-header__burger span {
  display: block;
  width: var(--burger-size);
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-header__burger { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--header-gradient);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;

    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1),
    padding .35s cubic-bezier(.4,0,.2,1);
  }

  .site-nav.is-open {
    max-height: 320px;
    padding: 8px 0 16px;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-left: 0;
  }

  .site-nav__link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
  }

  .site-nav__link:last-child { border-bottom: none; }
  .site-nav__link:hover { background: rgba(255,255,255,.1); opacity: 1; }
  .site-nav__link::after { display: none; }
}

@media (max-width: 380px) {
  .site-logo__tagline { display: none; }
  .site-header__inner { padding: 0 16px; }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.bt-section {
  padding: 48px 0 64px;
  background: #000;
}

.bt-grid {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  gap: 20px;
  align-items: start;
}

.bt-counter-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #393B41;
  background: #151515;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  padding: 30px 30px;
  margin-bottom: 40px;
}

.bt-counter-card__label {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.bt-counter-card__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.bt-counter-card__number {
  font-size: clamp(26px, 2.8vw, 64px);
  color: #D73027;
  font-weight: 800;
  line-height: normal;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;

  
}

.bt-counter-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.bt-text-block h2 {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 0;
}

.bt-text-block p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 16px;
}

.bt-text-block p strong {
  font-weight: 600;
  color: #fff;
}

.bt-btn-outline {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--2, linear-gradient(270deg, #D73027 0%, #FC8D59 100%));
  border: 2px solid #0A2A43;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, color .3s;
  line-height: 110%;
}
.bt-btn-outline:hover {
  background: #fff;
  color: #0A2A43;
}

.bt-tabs-card {
  border-radius: 10px;
  border: 1px solid #393B41;
background: #151515;
  padding: 30px 30px;
  margin-bottom: 24px;
}

.bt-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bt-tabs-nav__btn {
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid #D73027;
  background: #FFF;
  color: #0A2A43;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s, border-color .3s, color .3s;
  line-height: 1;
  padding: 11px 20px;
}
.bt-tabs-nav__btn:hover {
  border-color: rgba(255,255,255,.5);
  color: #0A2A43;
}
.bt-tabs-nav__btn.is-active {
  border-radius: 10px;
  background: linear-gradient(270deg, #D73027 0%, #FC8D59 100%);
  color: #fff;
  padding: 11px 20px;
  border: none;
}

.bt-tab-panel {
  display: none;
}
.bt-tab-panel.is-active {
  display: block;
  animation: tabFadeIn .25s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bt-tab-panel__title {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.bt-tab-panel__value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
  line-height: 1;
}

.bt-tab-panel__num {
  font-size: clamp(52px, 6vw, 100px);
  font-weight: 800;
  color: #F4511E;
  letter-spacing: -2px;
  line-height: 1;
}

.bt-tab-panel__pct {
  font-size: 48px;
  font-weight: 700;
  color: #FFF;
  align-self: flex-end;
  padding-bottom: 6px;
}

.bt-tab-panel__desc {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 14px;
  margin-top: 0;
}
.bt-tab-panel__desc:last-of-type { margin-bottom: 0; }
.bt-tab-panel__desc strong {
  color: #fff;
  font-weight: 600;
}

.bt-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 20px;
  background: linear-gradient(180deg, #D73027 0%, #FC8D59 100%);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  line-height: 1;
}
.bt-btn-orange:hover { background: linear-gradient(180deg, #D73027 0%, #FC8D59 100%); }
.bt-btn-orange svg { width: 15px; height: 15px; flex-shrink: 0; }

.bt-chart-block {
  background: #fff;
  border: 1.5px solid #E2E2E6;
  border-radius: 16px;
  overflow: hidden;
}
.bt-chart-block img {
  width: 100%;
  height: auto;
  display: block;
}

.bt-chart-placeholder {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F8F9FB;
  color: #999;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.bt-chart-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: .3;
}
.bt-chart-placeholder code {
  font-size: 12px;
  background: #EEF;
  padding: 2px 8px;
  border-radius: 4px;
  color: #667;
}

.bt-chart-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  border-top: 1px solid #F0F0F4;
  flex-wrap: wrap;
}
.bt-chart-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}
.bt-chart-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .bt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .bt-grid {
    grid-template-columns: 1fr;
  }

  .bt-counter-card__number {
    font-size: clamp(22px, 6.5vw, 36px);
  }

  .bt-chart-placeholder { height: 220px; }
}

@media (max-width: 600px) {
  .bt-section { padding: 28px 0 40px; }
  .container { padding: 0 15px; }
  .bt-counter-card { padding: 20px; }
  .bt-counter-card__label { font-size: 15px; }
  .bt-tabs-card { padding: 20px 20px 28px; }
  .bt-text-block h2 { font-size: 22px; }
  .bt-tab-panel__title { font-size: 17px; }
  .bt-tabs-nav__btn { font-size: 16px; padding: 12px 16px; }
  .bt-tabs-nav {
    display: flex;
    gap: 24px;
  }
}

.bt-news {
  padding: 56px 0 64px;
}

.bt-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.bt-news__title {
  font-size: 28px;
  font-weight: 400;
  color: #0A2A43;
  line-height: 1.2;
  white-space: nowrap;
}

.bt-news__title strong {
  font-weight: 800;
}

.bt-news__subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #0A2A43;
}

.bt-news__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.bt-arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid #D1D5DB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  color: #0A2A43;
}

.bt-arrow:hover {
  background: #0A2A43;
  border-color: #0A2A43;
  color: #fff;
}

.bt-arrow:hover svg path,
.bt-arrow:hover svg polyline {
  stroke: #fff;
}

.bt-arrow.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.bt-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.bt-arrow--next {
  background: #0A2A43;
  border-color: #0A2A43;
  color: #fff;
}
.bt-arrow--next svg polyline { stroke: #fff; }

.bt-slider {
  overflow: hidden;
  position: relative;
}

.bt-slider__track {
  display: flex;
  gap: 24px;
  /* each "page" = 2 cards; width managed via JS + CSS var */
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.bt-slide {
  /* JS sets flex-basis dynamically via --slide-w */
  flex: 0 0 var(--slide-w, calc(50% - 12px));
  min-width: 0;
}

.bt-news-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}

.bt-news-card__img {
  flex: 0 0 295px;
  width: 295px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 10px;
}

.bt-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.bt-news-card:hover .bt-news-card__img img {
  transform: scale(1.04);
}

.bt-news-card__body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.bt-news-card__title {
  color: #0A2A43;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color .2s;
}
.bt-news-card__title:hover { color: #D73027; }

.bt-news-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6A7282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.bt-news-card__date svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #6A7282;
}

.bt-news-card__excerpt {
  color: #0A2A43;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.bt-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0A2A43;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.bt-news-card__link:hover { gap: 8px; }
.bt-news-card__link span { display: inline-block; }

@media (max-width: 900px) {
  .bt-news-card__img {
    flex: 0 0 160px;
    width: 160px;
  }
}

@media (max-width: 640px) {
  .bt-news { padding: 36px 0 44px; }
  .bt-news__title,
  .bt-news__subtitle { font-size: 18px; }

  /* JS will read this to switch to 1-per-page */
  .bt-slider { --mobile: 1; }

  .bt-news-card {
    flex-direction: column;
    gap: 0;
  }

  .bt-news-card__img {
    flex: none;
    width: 100%;
    height: 200px;
    align-self: auto;
  }

  .bt-news-card__body {
    padding: 16px;
  }

  .bt-news__head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .bt-news__title {
    flex: 1 1 100%;
    white-space: normal;
  }
}

.bt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.bt-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bt-modal {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);

  /* Scale-in animation */
  transform: translateY(12px) scale(.97);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.bt-modal-overlay.is-open .bt-modal {
  transform: translateY(0) scale(1);
}

.bt-modal__header {
  background: #0A2A43;
  padding: 18px 20px 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bt-modal__title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.bt-modal__close {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  padding: 0;
}

.bt-modal__close:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.25);
}

.bt-modal__body {
  padding: 24px 24px 0;
}

.bt-modal__desc {
  font-size: 14px;
  font-weight: 400;
  color: #3D3D52;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bt-modal__form-slot {
  min-height: 40px;
}

.bt-modal__footer {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
}

.bt-modal__btn {
  flex: 1;
  height: 48px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
}

.bt-modal__btn--cancel {
  background: transparent;
  border: 1.5px solid #D1D5DB;
  color: #1A1A2E;
}
.bt-modal__btn--cancel:hover {
  border-color: #0A2A43;
}

.bt-modal__btn--submit {
  background: #0A2A43;
  color: #fff;
}
.bt-modal__btn--submit:hover {
  background: #0d3356;
}

@media (max-width: 480px) {
  .bt-modal-overlay { padding: 12px; align-items: flex-end; }

  .bt-modal {
    border-radius: 14px 14px 0 0;
    max-width: 100%;
    transform: translateY(40px) scale(1);
  }

  .bt-modal-overlay.is-open .bt-modal {
    transform: translateY(0) scale(1);
  }
}

.indicators{
  padding: 40px 0;
  background: #000;
}

.bt-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bt-ind-card {
  border-radius: 10px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.bt-ind-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}

.bt-ind-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bt-ind-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.bt-ind-card__date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 20px;
}

.bt-ind-card__title {
  color: #000;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  margin-top: 16px;
  margin-bottom: 10px;

}

.bt-ind-card__desc {
  color: #0A2A43;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}

.bt-ind-card__bar {
  height: 5px;
  border-radius: 10px;
  width: 0;
  transition: width 1s cubic-bezier(.4, 0, .2, 1);
  margin: 0 -20px;
  margin-left: -20px;
}

.bt-ind-card__bar-wrap {
  margin: auto -20px 0;
  height: 8px;
  border-radius: 0 0 0 0;
  overflow: hidden;
  margin-top: auto;
  padding: 0 20px;
}

.bt-ind-card__bar-inner {
  height: 100%;
  border-radius: 10px;
  width: 0;
  transition: width 1.1s cubic-bezier(.4, 0, .2, 1);
}


.bt-ind-card--green {
  background: #ECFDF5;
}
.bt-ind-card--green .bt-ind-card__icon {
  background: #059669;
}
.bt-ind-card--green .bt-ind-card__date {
  background: #D1FAE5;
  color: #065F46;
}
.bt-ind-card--green .bt-ind-card__bar-inner {
  background: linear-gradient(90deg, #059669 0%, #34D399 100%);
}

.bt-ind-card--yellow {
  background: #FFFBEB;
}
.bt-ind-card--yellow .bt-ind-card__icon {
  background: #F59E0B;
}
.bt-ind-card--yellow .bt-ind-card__date {
  background: #FEF3C7;
  color: #92400E;
}
.bt-ind-card--yellow .bt-ind-card__bar-inner {
  background: linear-gradient(90deg, #D97706 0%, #FBBF24 100%);
}

.bt-ind-card--orange {
  background: #FFF7ED;
}
.bt-ind-card--orange .bt-ind-card__icon {
  background: #EA580C;
}
.bt-ind-card--orange .bt-ind-card__date {
  background: #FFEDD5;
  color: #9A3412;
}
.bt-ind-card--orange .bt-ind-card__bar-inner {
  background: linear-gradient(90deg, #EA580C 0%, #FB923C 100%);
}

.bt-ind-card--blue {
  background: #EFF6FF;
}
.bt-ind-card--blue .bt-ind-card__icon {
  background: #1E3A5F;
}
.bt-ind-card--blue .bt-ind-card__date {
  background: #DBEAFE;
  color: #1E40AF;
}
.bt-ind-card--blue .bt-ind-card__bar-inner {
  background: linear-gradient(90deg, #0A2A43 0%, #155DFC 100%);
}

@media (max-width: 1024px) {
  .bt-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .bt-indicators {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bt-ind-card__title { font-size: 28px; }
}

#modal-report .wpcf7-submit {
  display: none !important;
}

form.wpcf7-form label {
  color: #0A2A43;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  width: 100%;
}

.wpcf7-response-output {
    display: none;
}

#modal-report .wpcf7-form label:last-child {
  margin-bottom: 0;
}

form.wpcf7-form label input{
  border-radius: 10px;
  border: 1px solid #F3F4F6;
  padding: 8px 12px;
  color: #0A2A43;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

form.wpcf7-form select{
  border-radius: 10px;
  border: 1px solid #F3F4F6;
  padding: 12px 14px;
  color: #0A2A43;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

form.wpcf7-form textarea {
  max-height: 60px;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
  padding: 12px 14px;
  color: #0A2A43;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 92%;
}

.wpcf7-spinner{
  display: none;
}





.bt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
/* ═══════════════════════════════════════════════════
   CARD BASE
═══════════════════════════════════════════════════ */
.bt-stat-card {
  border-radius: 16px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
}
 
.bt-stat-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
 
.bt-stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bt-stat-card__icon svg { width: 22px; height: 22px; display: block; }
 
.bt-stat-card__badge {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
 
.bt-stat-card__value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
 
.bt-stat-card__value--text {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000;
}
 
.bt-stat-card__desc {
  color: #0A2A43;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
  flex: 1;
}
 
.bt-stat-card__bar-wrap {
  height: 8px;
  overflow: hidden;
  border-radius: 16px;
}
 
.bt-stat-card__bar-inner {
  height: 100%;
  border-radius: 10px;
  width: 0;
  transition: width 1.1s cubic-bezier(.4, 0, .2, 1);
}
 
/* ═══════════════════════════════════════════════════
   THEMES
═══════════════════════════════════════════════════ */
.bt-stat-card--red { background: #FFF1F0; }
.bt-stat-card--red .bt-stat-card__icon { background: linear-gradient(135deg, #FC8D59 0%, #D73027 100%); }
.bt-stat-card--red .bt-stat-card__badge { background: #FFE0DC; color: #C0392B; }
.bt-stat-card--red .bt-stat-card__value { color: #D73027; }
.bt-stat-card--red .bt-stat-card__bar-inner { background: linear-gradient(90deg, #D73027 0%, #FC8D59 100%); }

 
.bt-stat-card--yellow {background: linear-gradient(96deg, #FFF7ED 0%, #FEFCE8 100%);}
.bt-stat-card--yellow .bt-stat-card__icon { background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%); }
.bt-stat-card--yellow .bt-stat-card__badge { background: #FEF3C7; color: #B45309; }
.bt-stat-card--yellow .bt-stat-card__value { color: #D97706; }
.bt-stat-card--yellow .bt-stat-card__bar-inner { background: linear-gradient(90deg, #D97706 0%, #FBBF24 100%); }


.bt-stat-card--orange {background: #FFF7ED;}
.bt-stat-card--orange .bt-stat-card__icon { background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);}
.bt-stat-card--orange .bt-stat-card__badge { background: #FFEDD5; color: #9A3412; }
.bt-stat-card--orange .bt-stat-card__value { color: #D97706; }
.bt-stat-card--orange .bt-stat-card__bar-inner { background: linear-gradient(90deg, #D97706 0%, #FBBF24 100%); }

 
.bt-stat-card--green { background: #ECFDF5; }
.bt-stat-card--green .bt-stat-card__icon { background: #059669; }
.bt-stat-card--green .bt-stat-card__badge { background: #D1FAE5; color: #065F46; }
.bt-stat-card--green .bt-stat-card__bar-inner { background: linear-gradient(90deg, #059669 0%, #34D399 100%); }


.bt-stat-card--blue { background: #EFF6FF; }
.bt-stat-card--blue .bt-stat-card__icon { background: #1E3A5F; }
.bt-stat-card--blue .bt-stat-card__badge {background: #DBEAFE; color: #1E40AF; }
.bt-stat-card--blue .bt-stat-card__bar-inner { background: linear-gradient(90deg, #0A2A43 0%, #155DFC 100%); }

 
/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bt-stats { grid-template-columns: 1fr 1fr; }
  .bt-stat-card:last-child { grid-column: 1 / -1; }
}
 
@media (max-width: 560px) {
  .bt-stats { grid-template-columns: 1fr; }
  .bt-stat-card:last-child { grid-column: auto; }
  .bt-stat-card__value { font-size: 40px; }
}


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.bt-footer {
  border-top: 1px solid #393B41;
  background: #151515;
  box-shadow: 4px 0 2px 0 rgba(0, 0, 0, 0.10);
  padding: 40px 0;
}
 
/* ─── Grid ───────────────────────────────────────── */
.bt-footer__grid {
  display: grid;
  grid-template-columns: 523px auto auto;
  gap: 80px;
  align-items: start;
  margin-bottom: 0;
}
 
/* ─── Left col ───────────────────────────────────── */
.bt-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.bt-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
 
.bt-footer__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(10, 42, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.bt-footer__logo-icon span {
  color: #0A2A43;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1;
}
 
.bt-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
 
.bt-footer__logo-name {
  color: #0A2A43;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
 
.bt-footer__logo-tagline {
  color: #6A7282;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
 
.bt-footer__desc {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  max-width: 370px;
}
 
.bt-footer__copy {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
 
.bt-footer__col-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}
 
.bt-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}
 
.bt-footer__nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: opacity .2s;
}
 
.bt-footer__nav a:hover {
  opacity: .6;
}
 
.bt-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.bt-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  transition: opacity .2s;
}
 
.bt-footer__contact-item:hover { opacity: .6; }
 
.bt-footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.bt-footer__contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.bt-footer__bottom {
  border-top: 1px solid #E8E9ED;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.bt-footer__bottom-copy {
  color: #6A7282;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
 
@media (max-width: 900px) {
  .bt-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
 
  .bt-footer__brand {
    grid-column: 1 / -1;
  }
}
 
@media (max-width: 560px) {
  .bt-footer { padding: 24px 0 14px; }
  .bt-footer__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
 
  .bt-footer__brand { grid-column: auto; }
}


.bt-news-page {
  padding: 32px 0 80px;
}
 
/* ─── Breadcrumbs ────────────────────────────────── */
.bt-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
 
.bt-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #6A7282;
  line-height: 1;
}
 
.bt-breadcrumbs span a {
  color: #6A7282;
  text-decoration: none;
  transition: color .2s;
}
.bt-breadcrumbs__item a:hover { color: #0A2A43; }
 
.bt-breadcrumbs__sep {
  color: #6A7282;
  font-size: 13px;
  line-height: 1;
}
 
.breadcrumb_last {
  color: #0A2A43;
  font-weight: 500;
}
 
/* ─── Page Header ────────────────────────────────── */
.bt-news-page__header {
  text-align: center;
  margin-bottom: 48px;
}
 
.bt-news-page__title {
  color: #0A2A43;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.screen-reader-text{
  display: none;
}
 
.bt-news-page__subtitle {
  color: #0A2A43;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
 
/* ─── Grid ───────────────────────────────────────── */
.bt-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}
 
/* ─── Card ───────────────────────────────────────── */
.bt-news-card {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s;
}
 
.bt-news-card:hover {
  box-shadow: 0 8px 32px rgba(10, 42, 67, .1);
}
 
/* Image */
.bt-news-card .bt-news-card__img {
    flex: 0 0 50%;
    width: 100%;
    align-self: stretch;
    overflow: hidden;
}
 
.bt-news-card__img a { display: block; height: 100%; }
 
.bt-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
 
.bt-news-card:hover .bt-news-card__img img {
  transform: scale(1.04);
}
 
/* Body */
.bt-news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
 
/* Title */
.bt-news-card__title {
  color: #0A2A43;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.bt-news-card__title:hover { color: #D73027; }
 
/* Date */
.bt-news-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6A7282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.bt-news-card__date svg { width: 15px; height: 15px; flex-shrink: 0; }
 
/* Excerpt */
.bt-news-card__excerpt {
  color: #0A2A43;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
 
/* Read link */
.bt-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0A2A43;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.bt-news-card__link:hover { gap: 8px; }
 
/* ─── Pagination ──────────────────────────────────── */
nav.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #E2E2E6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0A2A43;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}

.nav-links span{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #E2E2E6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0A2A43;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}

.nav-links a.next.page-numbers {
    background: #0A2A43;
    border-color: #0A2A43;
    color: #fff;
}

.nav-links a.prev.page-numbers{
    background: #0A2A43;
    border-color: #0A2A43;
    color: #fff;
}

.nav-links .page-numbers.current{
    background: #0A2A43;
    border-color: #0A2A43;
    color: #fff;
    pointer-events: none;
}
 
.bt-pagination__btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #E2E2E6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0A2A43;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}
 
.bt-pagination__btn:hover {
  border-color: #0A2A43;
  background: #0A2A43;
  color: #fff;
}
 
.bt-pagination__btn.is-active {
  background: #0A2A43;
  border-color: #0A2A43;
  color: #fff;
  pointer-events: none;
}
 
.bt-pagination__btn--arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
 
.bt-pagination__btn--arrow.is-disabled {
  opacity: .35;
  pointer-events: none;
}
 
.bt-pagination__dots {
  color: #6A7282;
  font-size: 14px;
  padding: 0 4px;
  line-height: 40px;
}
 
/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bt-news-card__img {
    flex: 0 0 180px;
    width: 180px;
  }
}
 
@media (max-width: 768px) {
  .bt-news-grid {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 560px) {
  .bt-news-page { padding: 24px 0 48px; }
  .bt-news-page__title { font-size: 28px; }
  .bt-news-page__subtitle { font-size: 16px; }
  .bt-news-page__header { margin-bottom: 32px; }
 
  .bt-news-card {
    flex-direction: column;
  }
  .bt-news-card__img {
    flex: none;
    width: 100%;
    height: 200px;
    align-self: auto;
  }
  .bt-news-card__body { padding: 16px; }
  .bt-news-card__title { font-size: 18px; line-height: 24px; }
}

/* ═══════════════════════════════════════════════════
   PAGE
═══════════════════════════════════════════════════ */
.bt-post-page {
  padding: 32px 0 80px;
}
 
/* ─── Breadcrumbs ────────────────────────────────── */
.bt-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bt-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6A7282;
}
.bt-breadcrumbs__item a {
  color: #6A7282;
  text-decoration: none;
  transition: color .2s;
}
.bt-breadcrumbs__item a:hover { color: #0A2A43; }
.bt-breadcrumbs__sep { color: #6A7282; font-size: 13px; }
.bt-breadcrumbs__item--current { color: #0A2A43; font-weight: 500; }
 
/* ─── Layout ─────────────────────────────────────── */
.bt-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
 
/* ═══════════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════════ */
.bt-post-main {}
 
/* ─── Hero Image ──────────────────────────────────── */
.bt-post-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/7;
}
.bt-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* ─── Article Card ────────────────────────────────── */
.bt-post-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 0;
}
 
/* ─── Meta ────────────────────────────────────────── */
.bt-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
 
.bt-post-meta__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6A7282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.bt-post-meta__date svg { width: 15px; height: 15px; flex-shrink: 0; }
 
.bt-post-meta__cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(270deg, #D73027 0%, #FC8D59 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}
 
/* ─── Title ───────────────────────────────────────── */
.bt-post-title {
  color: #0A2A43;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
 
/* ─── Intro / Lead ────────────────────────────────── */
.bt-post-lead {
  font-size: 18px;
  font-weight: 500;
  color: #0A2A43;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid #D73027;
}
 
/* ─── Body Content ────────────────────────────────── */
.bt-post-content p {
  font-size: 16px;
  font-weight: 400;
  color: #0A2A43;
  line-height: 1.75;
  margin-bottom: 20px;
}
.bt-post-content p:last-child { margin-bottom: 0; }
 
.bt-post-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0A2A43;
  line-height: 1.35;
  margin: 36px 0 16px;
}
 
.bt-post-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0A2A43;
  line-height: 1.4;
  margin: 28px 0 12px;
}
 
.bt-post-content strong { font-weight: 600; }
 
.bt-post-content ul,
.bt-post-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bt-post-content li {
  font-size: 16px;
  color: #0A2A43;
  line-height: 1.65;
}
.bt-post-content ul li::marker { color: #D73027; }
 
/* Blockquote */
.bt-post-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #F0F5FA;
  border-left: 4px solid #0A2A43;
  border-radius: 0 12px 12px 0;
}
.bt-post-content blockquote p {
  font-size: 16px;
  font-style: italic;
  color: #0A2A43;
  margin-bottom: 8px;
}
.bt-post-content blockquote cite {
  font-size: 13px;
  color: #6A7282;
  font-style: normal;
}
 
/* Inline image */
.bt-post-content .wp-caption,
.bt-post-content figure {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
}
.bt-post-content figure img {
  width: 100%;
  height: auto;
  display: block;
}
.bt-post-content figcaption {
  font-size: 13px;
  color: #6A7282;
  text-align: center;
  padding: 10px 16px;
  background: #F8F9FB;
}
 
/* ─── Tags ────────────────────────────────────────── */
.bt-post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid #E8E9ED;
}
.bt-post-tags__label {
  font-size: 13px;
  font-weight: 500;
  color: #6A7282;
}
.bt-post-tags__item {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #E2E2E6;
  font-size: 13px;
  font-weight: 400;
  color: #0A2A43;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.bt-post-tags__item:hover {
  border-color: #0A2A43;
  background: #0A2A43;
  color: #fff;
}
 
/* ─── Share ───────────────────────────────────────── */
.bt-post-share {
  background: #fff;
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.bt-post-share__label {
  font-size: 14px;
  font-weight: 500;
  color: #0A2A43;
  flex-shrink: 0;
}
.bt-post-share__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bt-post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
  line-height: 1;
  border: none;
  cursor: pointer;
}
.bt-post-share__btn:hover { opacity: .85; }
.bt-post-share__btn--tg  { background: #229ED9; color: #fff; }
.bt-post-share__btn--fb  { background: #1877F2; color: #fff; }
.bt-post-share__btn--copy { background: #F4F5F8; color: #0A2A43; border: 1.5px solid #E2E2E6; }
.bt-post-share__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
 
/* ─── Related Posts ───────────────────────────────── */
.bt-post-related__title {
  font-size: 22px;
  font-weight: 700;
  color: #0A2A43;
  margin-bottom: 20px;
}
.bt-post-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bt-related-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.bt-related-card:hover { box-shadow: 0 8px 24px rgba(10,42,67,.1); }
.bt-related-card__img {
  height: 160px;
  overflow: hidden;
}
.bt-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.bt-related-card:hover .bt-related-card__img img { transform: scale(1.04); }
.bt-related-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bt-related-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6A7282;
  font-size: 13px;
}
.bt-related-card__date svg { width: 13px; height: 13px; }
.bt-related-card__title {
  color: #0A2A43;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bt-related-card__link {
  font-size: 13px;
  color: #0A2A43;
  font-weight: 500;
  margin-top: auto;
}
 
/* ═══════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════ */
.bt-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px; /* header height */
}
 
/* Sidebar widget base */
.bt-sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}
.bt-sidebar-widget__title {
  font-size: 16px;
  font-weight: 700;
  color: #0A2A43;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E9ED;
}
 
/* ── Stats widget ── */
.bt-sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bt-sidebar-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bt-sidebar-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bt-sidebar-stat__icon svg { width: 20px; height: 20px; }
.bt-sidebar-stat__info {}
.bt-sidebar-stat__val {
  font-size: 20px;
  font-weight: 700;
  color: #0A2A43;
  line-height: 1;
  margin-bottom: 2px;
}
.bt-sidebar-stat__label {
  font-size: 12px;
  color: #6A7282;
  line-height: 1.3;
}
 
/* ── Recent posts widget ── */
.bt-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bt-sidebar-post {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: flex-start;
}
.bt-sidebar-post__img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.bt-sidebar-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.bt-sidebar-post:hover .bt-sidebar-post__img img { transform: scale(1.06); }
.bt-sidebar-post__body {}
.bt-sidebar-post__title {
  font-size: 13px;
  font-weight: 600;
  color: #0A2A43;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.bt-sidebar-post:hover .bt-sidebar-post__title { color: #D73027; }
.bt-sidebar-post__date {
  font-size: 12px;
  color: #6A7282;
}
 
/* ── CTA widget ── */
.bt-sidebar-cta {
  background: #0A2A43;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.bt-sidebar-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.bt-sidebar-cta__icon svg { width: 24px; height: 24px; }
.bt-sidebar-cta__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.bt-sidebar-cta__desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bt-sidebar-cta__btn {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(270deg, #D73027 0%, #FC8D59 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  line-height: 1;
}
.bt-sidebar-cta__btn:hover { opacity: .9; }
 
/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bt-post-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
  }
}
 
@media (max-width: 860px) {
  .bt-post-layout {
    grid-template-columns: 1fr;
  }
  .bt-post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .bt-sidebar-cta {
    grid-column: 1 / -1;
  }
  .bt-post-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bt-modal__body {
      padding: 6px 10px 0;
  }
  .container { padding: 0 15px; }
  .bt-btn-outline {
    display: block;
    text-align: center;
  }
  form.wpcf7-form label input {
    display: flex;
    width: 93%;
  }
  .bt-sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
  }
  .bt-post-page { padding: 20px 0 48px; }
  .bt-post-card { padding: 20px 0; }
  .bt-post-title { font-size: 24px; }
  .bt-post-lead { font-size: 16px; }
  .bt-post-share { padding: 0; }
  .bt-post-sidebar { grid-template-columns: 1fr; }
  .bt-post-related__grid { grid-template-columns: 1fr; }
  .bt-sidebar-cta { grid-column: auto; }
  .bt-footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
  }
  .bt-footer__nav a{
    padding: 14px 10px;
  }
  .site-logo__name{
    font-size: 22px;
  }
}

.bt-counter-card__number {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: max-content;
  text-align: center;
}

.map{
  margin-bottom: 60px;
}