:root {
  --ink: #141414;
  --muted: #646464;
  --line: #e8ebef;
  --paper: #ffffff;
  --soft: #f7f8fa;
  --brand: #0070e0;
  --accent: #ff799c;
  --gold: #d9a441;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
iframe {
  max-width: 100%;
}
section {
  scroll-margin-top: 92px;
}
h1,
h2,
h3,
p,
a,
strong,
span,
div,
summary,
figcaption,
button,
input,
textarea {
  overflow-wrap: anywhere;
}
.bp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bp-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
@keyframes bpHeaderEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bpHeroImageEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
    filter: saturate(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(1);
  }
}
@keyframes bpNumberPop {
  0% {
    transform: scale(0.86);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.bp-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.bp-logo {
  width: 64px;
  max-height: 48px;
  object-fit: contain;
}
.bp-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}
.bp-menu.is-open {
  display: flex;
}
.bp-menu a {
  opacity: 0.82;
}
.bp-menu a:hover {
  opacity: 1;
  color: var(--brand);
}
.bp-lang {
  display: flex;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.bp-social {
  color: var(--brand);
}
.bp-lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.bp-lang-trigger {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-transform: none;
  cursor: pointer;
  padding: 8px 2px;
}
.bp-lang-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 256px;
  display: none;
  padding: 18px 0 14px;
  background: rgba(128, 128, 128, 0.9);
  color: #0b0b0b;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  z-index: 80;
}
.bp-menu.is-open .bp-lang-panel,
.bp-lang-picker.is-open .bp-lang-panel {
  display: block;
}
.bp-lang-head {
  display: block;
  padding: 0 28px 24px;
  font-size: 24px;
  font-weight: 850;
  text-transform: none;
}
.bp-lang-option {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  opacity: 1;
}
.bp-menu .bp-lang-option:hover {
  color: #0b0b0b;
}
.bp-lang-option span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.bp-lang-option.is-active {
  margin: 0 0 0 6px;
  border-radius: 28px 0 0 28px;
  background: rgba(255, 255, 255, 0.92);
  color: #fff;
}
.bp-home-socials {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.bp-home-social {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1f1f1;
  color: #000;
  opacity: 1;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.bp-menu .bp-home-social:hover {
  color: #000;
  background: #e8e8e8;
  transform: translateY(-1px);
}
.bp-home-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bp-home-social:nth-child(2) svg,
.bp-home-social:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}
.bp-menu-button {
  position: relative;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  grid-template-columns: 40px auto;
  column-gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.bp-menu-button input {
  display: none;
}
.bp-menu-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 40px;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.bp-menu-button span:nth-of-type(1) {
  top: 6px;
  transform-origin: left center;
}
.bp-menu-button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.bp-menu-button span:nth-of-type(3) {
  top: calc(100% - 6px);
  transform-origin: left center;
  transform: translateY(-100%);
}
.bp-menu-button input:checked ~ span:nth-of-type(1),
.bp-menu-button.is-open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 6px;
  left: 5px;
}
.bp-menu-button input:checked ~ span:nth-of-type(2),
.bp-menu-button.is-open span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.bp-menu-button input:checked ~ span:nth-of-type(3),
.bp-menu-button.is-open span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 34px;
  left: 5px;
}
.bp-menu-button em {
  grid-column: 2;
  font-style: normal;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
}
.bp-lang-toggle,
.bp-mobile-menu-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transform: scale(0.7);
}
.bp-lang-toggle {
  position: relative;
  min-height: 42px;
  display: grid;
  grid-template-columns: 40px auto;
  column-gap: 12px;
  align-items: center;
}
.bp-lang-toggle span,
.bp-mobile-menu-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 40px;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transform-origin: left center;
  transition:
    top 0.28s ease,
    left 0.28s ease,
    width 0.2s ease,
    opacity 0.2s ease,
    transform 0.28s ease;
}
.bp-lang-toggle span:nth-of-type(1) {
  top: 6px;
}
.bp-lang-toggle span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.bp-lang-toggle span:nth-of-type(3) {
  top: calc(100% - 6px);
  transform: translateY(-100%);
}
.bp-lang-toggle.is-open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 6px;
  left: 5px;
}
.bp-lang-toggle.is-open span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.bp-lang-toggle.is-open span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 34px;
  left: 5px;
}
.bp-lang-toggle em {
  grid-column: 2;
  font-style: normal;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
}
.bp-mobile-menu-button {
  display: none;
}
.bp-header-home {
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  backdrop-filter: none;
}
.bp-header-home .bp-container {
  width: min(1560px, calc(100% - 96px));
}
.bp-header-home .bp-nav {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.bp-header-home .bp-brand {
  gap: 0;
  animation: bpHeaderEnter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bp-header-home .bp-logo {
  width: 112px;
  max-height: 92px;
}
.bp-primary-links,
.bp-lang-list,
.bp-home-socials {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bp-primary-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
}
.bp-primary-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
}
.bp-primary-links a:hover {
  color: var(--brand);
}
.bp-header-home .bp-primary-links li {
  animation: bpHeaderEnter 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(90ms + var(--bp-link-index, 0) * 55ms);
}
.bp-header-home .bp-primary-links li:nth-child(1) { --bp-link-index: 1; }
.bp-header-home .bp-primary-links li:nth-child(2) { --bp-link-index: 2; }
.bp-header-home .bp-primary-links li:nth-child(3) { --bp-link-index: 3; }
.bp-header-home .bp-primary-links li:nth-child(4) { --bp-link-index: 4; }
.bp-header-home .bp-primary-links li:nth-child(5) { --bp-link-index: 5; }
.bp-header-home .bp-primary-links li:nth-child(6) { --bp-link-index: 6; }
.bp-header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
}
.bp-lang-picker.is-open .bp-lang-panel {
  display: block;
}
.bp-header-home .bp-lang-picker {
  order: 1;
  animation: bpHeaderEnter 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}
.bp-header-home .bp-home-socials {
  order: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bp-header-home .bp-home-socials li {
  line-height: 0;
  animation: bpHeaderEnter 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bp-header-home .bp-home-socials li:nth-child(1) {
  animation-delay: 0.5s;
}
.bp-header-home .bp-home-socials li:nth-child(2) {
  animation-delay: 0.57s;
}
.bp-header-home .bp-home-socials li:nth-child(3) {
  animation-delay: 0.64s;
}
.bp-header-home .bp-home-social {
  width: 52px;
  height: 52px;
  background: #f1f1f1;
}
.bp-header-home .bp-home-social:hover {
  color: #000;
  background: #e8e8e8;
  transform: translateY(-1px);
}
.bp-home-social--telegram svg,
.bp-home-social--youtube svg {
  fill: currentColor;
  stroke: none;
}
.bp-header-home .bp-lang-panel {
  right: 0;
  top: calc(100% + 18px);
}
.bp-lang-head {
  margin: 0;
}
.bp-lang-list {
  display: grid;
  gap: 0;
}
.bp-mobile-menu {
  display: none;
}
.bp-section {
  background: var(--section-bg, var(--paper));
  color: var(--section-color, var(--ink));
  padding: 76px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}
.bp-section h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}
.bp-section h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}
.bp-lead {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}
.bp-lead p {
  margin: 0 0 10px;
}
.bp-title-text {
  text-align: center;
}
.bp-title-text .bp-lead {
  margin: 0 auto;
}
.bp-tests-page {
  --section-bg: #fff;
  background: #fff;
  padding: 36px 0 84px;
}
.bp-tests-page .bp-container {
  width: min(100% - 32px, 1040px);
}
.bp-tests-hero {
  text-align: center;
  margin: 0 auto 76px;
}
.bp-tests-hero h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  color: #006fe6;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
.bp-tests-hero p {
  max-width: 920px;
  margin: 0 auto;
  color: #050505;
  font-size: 16px;
  line-height: 1.7;
}
.bp-test-list {
  width: min(100%, 680px);
  margin: 0 auto;
  display: grid;
  gap: 72px;
}
.bp-test-card {
  position: relative;
  isolation: isolate;
  min-height: 176px;
  overflow: hidden;
  border-radius: 18px;
  padding: 40px 34px 34px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}
.bp-test-card::before,
.bp-test-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
.bp-test-card::before {
  width: 225px;
  height: 225px;
  left: -78px;
  bottom: -112px;
}
.bp-test-card::after {
  width: 260px;
  height: 260px;
  right: -60px;
  top: -88px;
}
.bp-test-card--blue {
  background: linear-gradient(112deg, #0a162c 0%, #0e2446 51%, #07569f 100%);
}
.bp-test-card--purple {
  background: linear-gradient(112deg, #10152d 0%, #28103e 51%, #5d0986 100%);
}
.bp-test-card--green {
  background: linear-gradient(112deg, #0b3515 0%, #12551d 50%, #2f8337 100%);
}
.bp-test-card--pink {
  background: linear-gradient(112deg, #a51158 0%, #c51466 51%, #ee216c 100%);
}
.bp-test-card--purple::before,
.bp-test-card--green::before,
.bp-test-card--pink::before {
  width: 260px;
  height: 260px;
  left: -100px;
  top: 38px;
  bottom: auto;
}
.bp-test-card h2 {
  margin: 18px auto 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
}
.bp-test-card p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.72;
  font-weight: 800;
}
.bp-test-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.bp-test-card--purple .bp-test-badge {
  border-color: rgba(255, 170, 36, 0.6);
  background: rgba(255, 133, 23, 0.28);
  color: #ffd200;
}
.bp-test-card--green .bp-test-badge {
  border-color: rgba(203, 255, 203, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: #d7ffd9;
}
.bp-test-card--pink .bp-test-badge {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
}
.bp-test-embedded-stack {
  display: grid;
  gap: 34px;
}
.bp-test-embedded-block {
  scroll-margin-top: 110px;
}
.bp-test-embedded-block > div[id^="TEST_PAGE_"] {
  display: block;
}
.bp-services {
  --section-bg: #f5f5f5;
  padding: 34px 0 38px;
  border-bottom: 0;
}
.bp-services .bp-container {
  width: min(840px, calc(100% - 32px));
}
.bp-services-header {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.bp-services-header h2,
.bp-tour-intro h2 {
  margin: 0;
  color: var(--brand);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}
.bp-services-header p,
.bp-tour-intro p {
  margin: 22px auto 0;
  color: #000;
  font-size: 15px;
  line-height: 1.55;
}
.bp-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 78px;
  row-gap: 34px;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}
.bp-service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  transition: transform 0.22s ease;
}
.bp-service-item:hover {
  transform: translateY(-3px);
}
.bp-service-number {
  color: #69aef2;
  font-size: 46px;
  line-height: 0.9;
  font-weight: 600;
  text-align: center;
  transform-origin: center;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}
.bp-service-item:hover .bp-service-number {
  color: #0070e0;
  animation: bpNumberPop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.bp-service-content h3 {
  margin: 0 0 2px;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}
.bp-service-content ul {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}
.bp-service-content li {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}
.bp-tour-intro {
  margin: 88px auto 0;
  padding: 0;
  max-width: 840px;
  text-align: center;
}
.bp-tour-intro p {
  max-width: 820px;
  margin-top: 22px;
}
.bp-event-cards {
  --section-bg: #fff;
  padding: 38px 0 40px;
  border-bottom: 8px solid #f5f5f5;
}
.bp-event-cards .bp-container {
  width: min(980px, calc(100% - 32px));
}
.bp-event-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bp-event-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.24s ease;
}
.bp-event-card:hover {
  transform: translateY(-4px);
}
.bp-event-card figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1.33;
  overflow: hidden;
  background: #f4f4f4;
}
.bp-event-card.bp-reveal figure {
  clip-path: inset(0 0 18% 0);
  transition:
    clip-path 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}
.bp-event-card.bp-reveal.is-visible figure {
  clip-path: inset(0 0 0 0);
}
.bp-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}
.bp-event-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}
.bp-event-card h3 {
  margin: 24px 0 14px;
  color: #222;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.bp-event-card p {
  margin: 0;
  color: #222;
  font-size: 13px;
  line-height: 1.55;
}
.bp-event-card.bp-reveal h3,
.bp-event-card.bp-reveal p {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
.bp-event-card.bp-reveal h3 {
  transition-delay: calc(var(--bp-reveal-delay, 0ms) + 160ms);
}
.bp-event-card.bp-reveal p {
  transition-delay: calc(var(--bp-reveal-delay, 0ms) + 230ms);
}
.bp-event-card.bp-reveal.is-visible h3,
.bp-event-card.bp-reveal.is-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.bp-growth {
  --section-bg: #f5f5f5;
  padding: 32px 0 44px;
  border-bottom: 0;
}
.bp-growth .bp-container {
  width: min(920px, calc(100% - 32px));
}
.bp-growth-header {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.bp-growth-header h2 {
  margin: 0;
  color: var(--brand);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}
.bp-growth-header p {
  max-width: 780px;
  margin: 22px auto 0;
  color: #000;
  font-size: 15px;
  line-height: 1.55;
}
.bp-growth-content {
  margin-top: 86px;
}
.bp-growth-intro h3 {
  margin: 0 0 4px;
  color: #222;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
}
.bp-growth-intro p {
  max-width: 840px;
  margin: 0;
  color: #222;
  font-size: 15px;
  line-height: 1.55;
}
.bp-growth-accordion {
  margin-top: 28px;
}
.bp-growth-item {
  border-bottom: 1px solid #d8d8d8;
}
.bp-growth-item:first-child {
  border-top: 0;
}
.bp-growth-item h4 {
  margin: 0;
}
.bp-growth-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 64px;
  padding: 0 34px 0 10px;
  border: 0;
  background: transparent;
  color: #222;
  font: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}
.bp-growth-toggle span {
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
}
.bp-growth-toggle::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #a8a8a8;
  border-radius: 50%;
  color: #777;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-50%);
}
.bp-growth-item.is-open .bp-growth-toggle {
  border-bottom: 1px solid #222;
}
.bp-growth-item.is-open .bp-growth-toggle::after {
  content: "-";
}
.bp-growth-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 10px;
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: top;
  transition:
    max-height 0.85s cubic-bezier(0.22, 0.9, 0.28, 1),
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 0.9, 0.28, 1),
    padding 0.55s ease;
}
.bp-growth-item.is-open .bp-growth-panel {
  padding: 20px 0 28px 10px;
  opacity: 1;
  transform: translateY(0);
}
.bp-growth-panel ul {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}
.bp-growth-panel li {
  color: #222;
  font-size: 14px;
  line-height: 1.45;
}
.bp-supported {
  --section-bg: #f5f5f5;
  padding: 36px 0 38px;
  border-bottom: 0;
}
.bp-supported .bp-container {
  width: min(1040px, calc(100% - 32px));
}
.bp-supported-header {
  text-align: center;
}
.bp-supported-header h2 {
  margin: 0;
  color: #000;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 850;
  text-transform: uppercase;
}
.bp-supported-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
}
.bp-supported-viewport {
  overflow: hidden;
}
.bp-supported-track {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.28, 1);
  will-change: transform;
}
.bp-supported-track > li {
  flex: 0 0 calc((100% - 170px) / 6);
  min-width: 0;
}
.bp-supported-logo {
  margin: 0;
  height: 110px;
  display: grid;
  place-items: center;
}
.bp-supported-logo img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}
.bp-supported-arrow {
  width: 28px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #b9b9b9;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}
.bp-supported-arrow:hover {
  color: #8c8c8c;
}
.bp-supported-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
.bp-supported-arrow span {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}
.bp-supported-arrow--prev span {
  transform: rotate(-45deg);
}
.bp-supported-arrow--next span {
  transform: rotate(135deg);
}
.bp-question-cta {
  --section-bg: #fff;
  padding: 42px 0;
  border-bottom: 0;
}
.bp-question-cta .bp-container { width: min(100% - 68px, 1820px); }
.bp-question-card {
  min-height: 142px;
  display: flex;
  align-items: center;
  border-radius: 38px;
  background: #f4f4f4;
  padding: 24px clamp(24px, 4vw, 72px);
}
.bp-question-content {
  width: min(100%, 770px);
  margin: 0 auto;
}
.bp-question-content p {
  margin: 0;
  color: #171717;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}
.bp-question-button {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-top: 10px;
  padding: 0 24px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  transition: background-color .18s ease, transform .18s ease;
}
.bp-question-button:hover {
  background: #000;
  transform: translateY(-1px);
}
.bp-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.bp-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.bp-services-actions {
  display: flex;
  justify-content: center;
  margin: 38px 0 0;
}
.bp-section-head .bp-section-mentor-button {
  margin-top: 22px;
}
.bp-section-mentor-button {
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #0b6fe8;
  color: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(11, 111, 232, 0.24);
  cursor: pointer;
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.bp-section-mentor-button:hover {
  background: #045fd1;
  box-shadow: 0 18px 36px rgba(11, 111, 232, 0.32);
  transform: translateY(-1px);
}
.bp-site-footer {
  background: #f7f7f7;
  color: #111;
  border-top: 1px solid #f0f0f0;
}
.bp-footer-contact {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 38px;
  text-align: left;
}
.bp-footer-eyebrow {
  margin: 0 0 6px;
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.bp-footer-contact h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}
.bp-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 10px;
  margin: 24px 0 0;
  border: 0;
}
.bp-footer-item {
  margin: 0 !important;
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition:
    border-color .24s ease,
    box-shadow .24s ease,
    transform .24s ease;
}
.bp-footer-item:last-child {
  border-right: 1px solid #e8e8e8;
}
.bp-footer-item p,
.bp-footer-item address {
  margin: 0;
}
.bp-footer-item:hover {
  border-color: #d9d9d9;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.bp-footer-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3f3f3;
  color: #0b6fe8;
  font-size: 17px;
  line-height: 1;
  transition:
    background-color .24s ease,
    color .24s ease,
    transform .24s ease;
}
.bp-footer-item:hover .bp-footer-icon {
  background: #0b6fe8;
  color: #fff;
  transform: scale(1.04);
}
.bp-footer-icon svg,
.bp-footer-social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bp-footer-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.bp-footer-text span {
  color: #9a9a9a;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.bp-footer-text strong {
  color: #000;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}
.bp-footer-social-card {
  align-content: center;
}
.bp-footer-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
}
.bp-footer-social-list a {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  transition:
    color .2s ease,
    transform .2s ease;
}
.bp-footer-social-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: currentColor;
}
.bp-footer-social-icon svg {
  width: 17px;
  height: 17px;
}
.bp-footer-social-list a:hover {
  color: #0b6fe8;
  transform: translateY(-2px);
}
.bp-footer-bottom {
  background: #0f0f0f;
  color: #fff;
  padding: 9px 0;
  text-align: center;
}
.bp-footer-bottom p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}
.bp-grid {
  display: grid;
  gap: 22px;
}
.bp-grid-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 100%;
}

.bp-grid-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  animation: bpHeroImageEnter 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--bp-hero-delay, 0ms);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.32s ease,
    transform 0.32s ease;
}
.bp-grid-images figure:nth-child(1) {
  --bp-hero-delay: 90ms;
}
.bp-grid-images figure:nth-child(2) {
  --bp-hero-delay: 190ms;
}
.bp-grid-images figure:nth-child(3) {
  --bp-hero-delay: 290ms;
}
.bp-grid-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.48s ease;
  display: block;
}
.bp-grid-images figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.12);
}
.bp-grid-images figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04);
}
.bp-grid-images figcaption {
  padding: 14px 16px;
  font-weight: 700;
}
#block6074 .bp-grid-images {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#block6074 .bp-grid-images figure {
  min-width: 0;
}
#block6074 .bp-grid-images img {
  height: auto;
  object-fit: contain;
}
#block6074 .bp-grid-images figure:hover img {
  transform: none;
  filter: none;
}
.bp-hero-image-grid .bp-container {
  position: relative;
}
.bp-hero-image-grid .bp-grid-images {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bp-hero-image-grid .bp-grid-images figure {
  position: relative;
  min-width: 0;
}
.bp-hero-image-grid .bp-grid-images img {
  height: auto;
  object-fit: contain;
}
.bp-hero-image-grid .bp-grid-images figure:hover img {
  transform: none;
  filter: none;
}
.bp-hero-mentor-button {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 1.8vw, 22px);
  z-index: 5;
  width: max-content;
  max-width: calc(100% - 18px);
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #111;
  font: inherit;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateX(-50%);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}
.bp-hero-mentor-button:hover {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -2px);
}
.bp-hero-mentor-button:focus-visible {
  outline: 3px solid rgba(0, 119, 255, 0.55);
  outline-offset: 4px;
}
#block5650 .bp-grid-images,
#block5554 .bp-grid-images,
#block5602 .bp-grid-images {
  gap: 28px;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#block5650 .bp-grid-images figure,
#block5554 .bp-grid-images figure,
#block5602 .bp-grid-images figure {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
#block5650 .bp-grid-images img,
#block5554 .bp-grid-images img,
#block5602 .bp-grid-images img {
  width: 100%;
  height: clamp(300px, 27vw, 390px);
  object-fit: contain;
  background: #fff;
}
#block5650 .bp-grid-images figure.bp-reveal {
  opacity: 0;
  transform: translate3d(0, 82px, 0) scale(0.92);
  filter: blur(10px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s ease;
  transition-delay: var(--bp-reveal-delay, 0ms);
}
#block5650 .bp-grid-images figure.bp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
#block5650 .bp-grid-images figure.bp-reveal img {
  clip-path: inset(22% 0 0 0);
  transition:
    clip-path 1.02s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.02s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--bp-reveal-delay, 0ms);
}
#block5650 .bp-grid-images figure.bp-reveal.is-visible img {
  clip-path: inset(0 0 0 0);
}
#block5650 .bp-grid-images figcaption,
#block5554 .bp-grid-images figcaption,
#block5602 .bp-grid-images figcaption {
  position: relative;
  z-index: 2;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 20px;
  background: #fff;
  color: #111;
  font-size: 17px;
  line-height: 1.25;
  text-align: center;
}
#block5650 .bp-grid-images figure.bp-reveal figcaption {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--bp-reveal-delay, 0ms) + 260ms);
}
#block5650 .bp-grid-images figure.bp-reveal.is-visible figcaption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Mobile: 1 ta rasm to'liq */
@media (max-width: 860px) {
  .bp-grid-images {
    grid-template-columns: repeat(3, 1fr);
  }
  .bp-grid-images img {
    height: 280px;
  }
  #block6074 .bp-grid-images {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 22px;
    margin-top: 18px;
  }
  #block6074 .bp-grid-images img {
    height: auto;
  }
  .bp-hero-image-grid .bp-grid-images {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 22px;
    margin-top: 18px;
  }
  .bp-hero-image-grid .bp-grid-images img {
    height: auto;
  }
  .bp-hero-mentor-button {
    bottom: 14px;
    max-width: calc(100% - 16px);
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }
  #block5650 .bp-grid-images,
  #block5554 .bp-grid-images,
  #block5602 .bp-grid-images {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 22px;
  }
  #block5650 .bp-grid-images img,
  #block5554 .bp-grid-images img,
  #block5602 .bp-grid-images img {
    height: clamp(260px, 52vw, 360px);
  }
}
@media (max-width: 520px) {
  .bp-grid-images img {
    height: 220px;
  }
  #block6074 .bp-grid-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #block6074 .bp-grid-images img {
    height: auto;
  }
  .bp-hero-image-grid .bp-grid-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bp-hero-image-grid .bp-grid-images img {
    height: auto;
  }
  .bp-hero-mentor-button {
    bottom: 12px;
    max-width: calc(100% - 14px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }
  #block5650 .bp-grid-images,
  #block5554 .bp-grid-images,
  #block5602 .bp-grid-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #block5650 .bp-grid-images img,
  #block5554 .bp-grid-images img,
  #block5602 .bp-grid-images img {
    height: clamp(280px, 92vw, 420px);
  }
}

.bp-cta-section {
  --section-bg: #ffffff;
  padding: 50px 0;
}
.bp-cta-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.bp-cta-icon {
  flex: 0 0 auto;
}
.bp-cta-icon svg {
  width: 80px;
  height: 80px;
  display: block;
}
.bp-cta-content h2 {
  margin: 0 0 22px;
  color: #141414;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 700;
}
.bp-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 36px;
  border: none;
  border-radius: 8px;
  background: #0070e0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.bp-cta-button:hover {
  background: #005bb8;
}
@media (max-width: 700px) {
  .bp-cta-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .bp-cta-icon svg {
    width: 64px;
    height: 64px;
  }
  .bp-cta-content h2 {
    margin-bottom: 20px;
  }
}
.bp-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 28px;
}
.bp-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.06);
}
.bp-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--bp-reveal-delay, 0ms);
  will-change: opacity, transform;
}
.bp-reveal[data-reveal="soft"] {
  transform: translate3d(0, 22px, 0);
}
.bp-reveal[data-reveal="zoom"] {
  transform: translate3d(0, 24px, 0) scale(0.97);
}
.bp-reveal[data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}
.bp-reveal[data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}
.bp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.bp-card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-weight: 800;
}
.bp-card-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 18px;
}
.bp-card-text p {
  margin: 0;
}
.bp-price {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 850;
  color: var(--brand);
}
.bp-about {
  --section-bg: #141414;
  color: #fff;
  padding: 52px 0 0;
  border-bottom: 0;
}
.bp-about .bp-container { width: min(1470px, calc(100% - 48px)); }
.bp-about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 455px) minmax(0, 1fr);
  gap: 26px;
  align-items: end;
}
.bp-about-media {
  align-self: end;
  margin: 0;
}
.bp-about-media img {
  display: block;
  width: 100%;
  height: 545px;
  min-height: 0;
  object-fit: cover;
  object-position: right top;
  box-shadow: none;
}
.bp-about-copy {
  padding: 56px 0 48px;
}
.bp-about-header {
  max-width: 940px;
}
.bp-eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}
.bp-about-header h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 750;
  text-transform: uppercase;
}
.bp-about-header p {
  margin: 40px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}
.bp-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.bp-fact {
  min-height: 118px;
  padding: 18px 20px;
  background: #2a2a2a;
  border: 0;
  border-radius: 0;
}
.bp-fact h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 750;
}
.bp-fact ul {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}
.bp-fact li {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 1180px) {
  .bp-about .bp-container {
    width: min(100% - 36px, 1040px);
  }
  .bp-about-layout {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 22px;
  }
  .bp-about-media img {
    height: 500px;
    object-position: center top;
  }
  .bp-about-copy {
    padding: 42px 0 44px;
  }
  .bp-about-header p {
    margin-top: 28px;
  }
  .bp-facts {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  .bp-about {
    padding: 42px 0 0;
  }
  .bp-about .bp-container {
    width: min(100% - 28px, 720px);
  }
  .bp-about-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bp-about-media {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .bp-about-media img {
    height: auto;
    max-height: 430px;
    object-fit: contain;
    object-position: center bottom;
  }
  .bp-about-copy {
    padding: 30px 0 44px;
  }
  .bp-about-header {
    max-width: 100%;
    text-align: center;
  }
  .bp-about-header h2 {
    font-size: 26px;
  }
  .bp-about-header p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
  }
  .bp-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }
  .bp-fact {
    min-height: 0;
    padding: 18px;
  }
}
@media (max-width: 520px) {
  .bp-about {
    padding-top: 34px;
  }
  .bp-about .bp-container {
    width: min(100% - 24px, 560px);
  }
  .bp-about-media {
    width: min(100%, 330px);
  }
  .bp-about-media img {
    max-height: 340px;
  }
  .bp-about-copy {
    padding: 26px 0 38px;
  }
  .bp-about-header h2 {
    font-size: 24px;
  }
  .bp-about-header p {
    margin-top: 18px;
    font-size: 12px;
  }
  .bp-fact h3 {
    font-size: 15px;
  }
  .bp-fact li {
    font-size: 12px;
    line-height: 1.55;
  }
}
.bp-videos {
  background: var(--paper);
  color: var(--ink);
}
.bp-video-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
}
.bp-video-viewport {
  overflow: hidden;
}
.bp-video-track {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.28, 1);
  will-change: transform;
}
.bp-video-track > li {
  flex: 0 0 calc((100% - 22px) / 2);
  min-width: 0;
}
.bp-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.bp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bp-video-arrow {
  width: 28px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #b9b9b9;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}
.bp-video-arrow:hover {
  color: #8c8c8c;
}
.bp-video-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
.bp-video-arrow span {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}
.bp-video-arrow--prev span {
  transform: rotate(-45deg);
}
.bp-video-arrow--next span {
  transform: rotate(135deg);
}
.bp-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.bp-faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px 20px;
}
.bp-faq-item summary {
  cursor: pointer;
  font-weight: 800;
}
.bp-faq-item div {
  color: var(--muted);
  margin-top: 12px;
}
.bp-contact {
  --section-bg: #fff;
  padding: 52px 0 58px;
  border-bottom: 0;
}
.bp-contact .bp-container { width: min(990px, calc(100% - 48px)); }
.bp-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
.bp-form {
  display: grid;
  gap: 14px;
  padding-top: 22px;
}
.bp-form label {
  display: block;
}
.bp-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.bp-form input,
.bp-form textarea {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 2px;
  background: #f4f4f4;
  padding: 0 10px;
  color: #111;
  font: inherit;
  font-size: 14px;
  resize: none;
}
.bp-form textarea {
  padding-top: 12px;
}
.bp-form input::placeholder,
.bp-form textarea::placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.bp-form button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 3px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.bp-form button:hover {
  background: #000;
  transform: translateY(-1px);
}
.bp-form-note {
  margin: 3px 0 0;
  color: #8d8d8d;
  font-size: 11px;
  text-decoration: underline;
}
.bp-contact-info {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.bp-contact-header h2 {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}
.bp-contact-header p {
  margin: 18px 0 32px;
  color: #909090;
  font-size: 13px;
  line-height: 1.45;
}
.bp-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-style: normal;
}
.bp-contact-row {
  min-height: 146px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px 16px;
  border-top: 1px solid #e8e8e8;
}
.bp-contact-row:nth-child(odd) {
  border-right: 1px solid #e8e8e8;
}
.bp-contact-row svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  fill: none;
  stroke: #000;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bp-contact-row strong {
  color: #a0a0a0;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}
.bp-contact-row span {
  color: #000;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}
.bp-case-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.bp-case-logo {
  max-width: 130px;
  max-height: 78px;
  object-fit: contain;
  margin-bottom: 16px;
}
.bp-text-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.bp-chip-text {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
@media (max-width: 1400px) {
  .bp-header-home .bp-container {
    width: min(100% - 32px, 1560px);
  }
  .bp-header-home .bp-nav {
    min-height: 104px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }
  .bp-header-home .bp-logo {
    width: 88px;
    max-height: 74px;
  }
  .bp-primary-links {
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }
  .bp-primary-links a {
    min-height: 38px;
    font-size: 13px;
  }
  .bp-header-actions {
    gap: 8px;
  }
  .bp-lang-toggle {
    min-height: 38px;
    grid-template-columns: 30px auto;
    column-gap: 8px;
  }
  .bp-lang-toggle span {
    width: 30px;
    height: 3px;
  }
  .bp-lang-toggle span:nth-of-type(1) {
    top: 5px;
  }
  .bp-lang-toggle span:nth-of-type(3) {
    top: calc(100% - 5px);
  }
  .bp-lang-toggle.is-open span:nth-of-type(1) {
    top: 5px;
    left: 4px;
  }
  .bp-lang-toggle.is-open span:nth-of-type(3) {
    top: 31px;
    left: 4px;
  }
  .bp-lang-toggle em {
    font-size: 18px;
  }
  .bp-header-home .bp-home-socials {
    gap: 8px;
  }
  .bp-header-home .bp-home-social {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 1180px) {
  .bp-header-home .bp-container {
    width: min(100% - 28px, 1560px);
  }
  .bp-header-home .bp-nav {
    min-height: 92px;
    gap: 14px;
  }
  .bp-header-home .bp-logo {
    width: 78px;
    max-height: 64px;
  }
  .bp-primary-links {
    gap: 12px;
  }
  .bp-primary-links a {
    font-size: 13px;
  }
  .bp-header-actions {
    gap: 10px;
  }
  .bp-lang-toggle {
    grid-template-columns: 30px auto;
    column-gap: 8px;
  }
  .bp-lang-toggle span {
    width: 30px;
  }
  .bp-lang-toggle em {
    font-size: 20px;
  }
  .bp-header-home .bp-home-social {
    width: 44px;
    height: 44px;
  }
  .bp-header-home .bp-home-socials {
    gap: 8px;
  }
}
@media (max-width: 1120px) {
  .bp-nav {
    justify-content: flex-start;
  }
  .bp-header:not(.bp-header-home) .bp-brand {
    display: none;
  }
  .bp-menu-button {
    margin-left: 20px;
  }
  .bp-menu {
    position: absolute;
    left: 8px;
    top: 78px;
    width: 256px;
    display: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .bp-menu.is-open {
    display: block;
  }
  .bp-menu > a,
  .bp-menu > .bp-home-socials {
    display: none;
  }
  .bp-lang {
    border-left: 0;
    padding-left: 0;
  }
  .bp-lang-picker {
    display: block;
  }
  .bp-lang-trigger {
    display: none;
  }
  .bp-lang-panel {
    position: static;
    width: 100%;
    margin-top: 0;
    display: none;
  }
  .bp-menu.is-open .bp-lang-panel {
    display: block;
  }
  .bp-home-socials {
    justify-content: flex-start;
    margin-top: 4px;
  }
  .bp-header-home .bp-container {
    width: min(100% - 28px, 1560px);
  }
  .bp-header-home .bp-nav {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .bp-header-home .bp-primary-links,
  .bp-header-home .bp-home-socials {
    display: none;
  }
  .bp-header-home .bp-brand {
    display: flex;
  }
  .bp-header-home .bp-logo {
    width: 70px;
    max-height: 56px;
  }
  .bp-header-home .bp-header-actions {
    position: static;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    min-width: 0;
    justify-self: end;
  }
  .bp-header-home .bp-lang-picker {
    display: none;
  }
  .bp-header-home .bp-lang-toggle {
    min-height: 38px;
    display: grid;
    grid-template-columns: 34px auto;
    column-gap: 10px;
  }
  .bp-header-home .bp-lang-toggle span {
    width: 34px;
    height: 3px;
  }
  .bp-header-home .bp-lang-toggle span:nth-of-type(1) {
    top: 5px;
  }
  .bp-header-home .bp-lang-toggle span:nth-of-type(2) {
    top: 50%;
  }
  .bp-header-home .bp-lang-toggle span:nth-of-type(3) {
    top: calc(100% - 5px);
  }
  .bp-header-home .bp-lang-toggle.is-open span:nth-of-type(1) {
    top: 5px;
    left: 4px;
    transform: rotate(45deg);
  }
  .bp-header-home .bp-lang-toggle.is-open span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .bp-header-home .bp-lang-toggle.is-open span:nth-of-type(3) {
    top: 31px;
    left: 4px;
    transform: rotate(-45deg);
  }
  .bp-header-home .bp-lang-toggle em {
    font-size: 20px;
  }
  .bp-header-home .bp-mobile-menu-button {
    position: relative;
    width: 40px;
    height: 30px;
    min-height: 30px;
    display: block;
    margin-left: 0;
  }
  .bp-header-home .bp-mobile-menu-button span {
    width: 40px;
    transition:
      top 0.28s ease,
      left 0.28s ease,
      width 0.2s ease,
      opacity 0.2s ease,
      transform 0.28s ease;
  }
  .bp-header-home .bp-mobile-menu-button span:nth-of-type(1) {
    top: 0;
  }
  .bp-header-home .bp-mobile-menu-button span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .bp-header-home .bp-mobile-menu-button span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
  }
  .bp-header-home .bp-mobile-menu-button.is-open span:nth-of-type(1) {
    top: 0;
    left: 5px;
    transform: rotate(45deg);
  }
  .bp-header-home .bp-mobile-menu-button.is-open span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .bp-header-home .bp-mobile-menu-button.is-open span:nth-of-type(3) {
    top: 28px;
    left: 5px;
    transform: rotate(-45deg);
  }
  .bp-header-home .bp-lang-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 256px;
    display: none;
  }
  .bp-header-home .bp-mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: block;
    max-height: calc(100vh - 78px);
    padding: 18px 20px 22px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #ededed;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    pointer-events: none;
    overflow-y: auto;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }
  .bp-header-home .bp-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .bp-mobile-links,
  .bp-mobile-socials {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .bp-mobile-links {
    display: grid;
    gap: 2px;
    padding-bottom: 14px;
    border-bottom: 1px solid #efefef;
  }
  .bp-mobile-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 850;
    text-transform: uppercase;
  }
  .bp-mobile-lang {
    margin-top: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #efefef;
  }
  .bp-mobile-lang p {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 850;
  }
  .bp-mobile-lang .bp-lang-option {
    min-height: 42px;
    padding: 0;
    font-size: 17px;
    color: #111;
  }
  .bp-mobile-lang .bp-lang-option.is-active {
    margin: 0;
    padding-left: 14px;
    border-radius: 22px;
    background: #f1f1f1;
    color: #111;
  }
  .bp-mobile-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
  }
  .bp-section {
    padding: 54px 0;
  }
  .bp-services {
    padding: 34px 0 38px;
  }
  .bp-services-list {
    grid-template-columns: 1fr;
    row-gap: 28px;
    margin-top: 42px;
  }
  .bp-service-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }
  .bp-service-number {
    font-size: 40px;
  }
  .bp-tour-intro {
    margin-top: 58px;
  }
  .bp-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bp-growth {
    padding: 32px 0 42px;
  }
  .bp-growth-content {
    margin-top: 58px;
  }
  .bp-growth-header h2 {
    font-size: 30px;
  }
  .bp-growth-intro h3 {
    font-size: 24px;
  }
  .bp-video-track {
    gap: 16px;
  }
  .bp-video-track > li {
    flex: 0 0 calc((100% - 32px) / 2);
  }
  .bp-supported-track {
    gap: 28px;
  }
  .bp-supported-track > li {
    flex-basis: calc((100% - 84px) / 4);
  }
  .bp-footer-contact {
    max-width: 760px;
  }
  .bp-about-layout,
  .bp-contact-layout {
    grid-template-columns: 1fr;
  }
  .bp-contact .bp-container { width: min(100% - 32px, 990px); }
  .bp-contact-layout { gap: 34px; }
  .bp-grid-images img {
    min-height: 170px;
  }
}
@media (max-width: 520px) {
  .bp-container {
    width: min(100% - 24px, 1180px);
  }
  .bp-nav {
    min-height: 68px;
  }
  .bp-brand span {
    font-size: 14px;
  }
  .bp-logo {
    width: 54px;
  }
  .bp-menu {
    top: 66px;
  }
  .bp-header-home .bp-nav {
    min-height: 68px;
  }
  .bp-header-home .bp-lang-panel {
    top: calc(100% + 10px);
  }
  .bp-section {
    padding: 42px 0;
  }
  .bp-tests-page {
    padding: 34px 0 64px;
  }
  .bp-section h2 {
    font-size: 30px;
  }
  .bp-tests-hero {
    margin-bottom: 54px;
  }
  .bp-tests-hero h1 {
    font-size: 30px;
  }
  .bp-tests-hero p {
    font-size: 14px;
    line-height: 1.65;
  }
  .bp-test-list {
    gap: 44px;
  }
  .bp-test-card {
    min-height: 164px;
    border-radius: 16px;
    padding: 34px 20px 30px;
  }
  .bp-test-card h2 {
    font-size: 22px;
  }
  .bp-test-card p {
    font-size: 12px;
    line-height: 1.62;
  }
  .bp-lead {
    font-size: 16px;
  }
  .bp-services {
    padding: 30px 0 34px;
  }
  .bp-services .bp-container {
    width: min(100% - 24px, 840px);
  }
  .bp-services-header h2,
  .bp-tour-intro h2 {
    font-size: 30px;
  }
  .bp-services-header p,
  .bp-tour-intro p {
    font-size: 14px;
  }
  .bp-service-content h3 {
    font-size: 19px;
  }
  .bp-service-content li {
    font-size: 14px;
  }
  .bp-service-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .bp-service-number {
    font-size: 36px;
  }
  .bp-event-cards {
    padding: 28px 0 34px;
  }
  .bp-event-cards .bp-container {
    width: min(100% - 24px, 980px);
  }
  .bp-event-list {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .bp-event-card figure {
    max-width: 320px;
    margin: 0 auto;
  }
  .bp-event-card h3 {
    margin-top: 18px;
  }
  .bp-growth .bp-container {
    width: min(100% - 24px, 920px);
  }
  .bp-growth-header h2 {
    font-size: 28px;
  }
  .bp-growth-header p,
  .bp-growth-intro p {
    font-size: 14px;
  }
  .bp-growth-content {
    margin-top: 44px;
  }
  .bp-growth-intro h3 {
    font-size: 22px;
  }
  .bp-growth-toggle {
    min-height: 58px;
    padding-left: 0;
    font-size: 19px;
  }
  .bp-growth-panel {
    padding-left: 0;
  }
  .bp-supported {
    padding: 32px 0 34px;
  }
  .bp-supported .bp-container {
    width: min(100% - 24px, 1040px);
  }
  .bp-supported-header h2 {
    font-size: 22px;
  }
  .bp-supported-carousel {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 8px;
    margin-top: 30px;
  }
  .bp-supported-track {
    gap: 18px;
  }
  .bp-supported-track > li {
    flex-basis: calc((100% - 18px) / 2);
  }
  .bp-supported-logo {
    height: 72px;
  }
  .bp-supported-logo img {
    max-height: 72px;
  }
  .bp-question-cta { padding: 26px 0 28px; }
  .bp-question-cta .bp-container { width: min(100% - 24px, 920px); }
  .bp-question-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }
  .bp-question-icon { padding-top: 4px; }
  .bp-question-icon svg {
    width: 42px;
    height: 42px;
    stroke-width: 5;
  }
  .bp-question-content p {
    font-size: 22px;
    line-height: 1.28;
  }
  .bp-question-button {
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    font-size: 14px;
  }
  .bp-site-footer .bp-container {
    width: min(100% - 24px, 1180px);
  }
  .bp-footer-contact {
    padding: 36px 0 28px;
  }
  .bp-footer-contact h2 {
    font-size: 22px;
  }
  .bp-footer-grid {
    grid-template-columns: 1fr;
  }
  .bp-footer-item {
    min-height: 64px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 11px;
  }
  .bp-footer-icon {
    width: 32px;
    height: 32px;
  }
  .bp-footer-text strong {
    font-size: 13px;
  }
  .bp-footer-social-list {
    gap: 10px;
  }
  .bp-footer-social-list a {
    width: auto;
    height: auto;
  }
  .bp-contact { padding: 36px 0 42px; }
  .bp-contact .bp-container { width: min(100% - 24px, 990px); }
  .bp-contact-header h2 { font-size: 22px; }
  .bp-contact-header p { margin-bottom: 22px; }
  .bp-contact-list { grid-template-columns: 1fr; }
  .bp-contact-row {
    min-height: 132px;
    border-right: 0 !important;
  }
  .bp-contact-row:first-child { border-top: 1px solid #e8e8e8; }
  .bp-card {
    padding: 18px;
  }
  .bp-video-carousel {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 8px;
    margin-top: 30px;
  }
  .bp-video-track {
    gap: 12px;
  }
  .bp-video-track > li {
    flex: 0 0 calc((100% - 12px) / 1);
  }
  .bp-card-grid,
  .bp-grid-images {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .bp-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .bp-header-home .bp-brand,
  .bp-header-home .bp-primary-links li,
  .bp-header-home .bp-lang-picker,
  .bp-header-home .bp-home-socials li,
  .bp-grid-images figure,
  .bp-event-card.bp-reveal h3,
  .bp-event-card.bp-reveal p,
  #block5650 .bp-grid-images figure.bp-reveal img,
  #block5650 .bp-grid-images figure.bp-reveal figcaption {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}
