.bc-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.bc-floating__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 54px;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #ff6c36;
  box-shadow: 0 14px 34px rgba(20, 30, 45, .22);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.bc-floating__button--tg {
  background: #46be4a;
}

.bc-floating__button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.bc-floating__button:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
}

.bc-privacy-link {
  display: block;
  padding: 22px 16px 30px;
  color: rgba(255, 255, 255, .76);
  background: #061c35;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  text-decoration: underline;
}

.bc-course-links {
  padding: 82px 20px;
  background: #ffffff;
}

.bc-course-links__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.bc-course-links__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.bc-course-links__eyebrow {
  color: #ff6c36;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bc-course-links h2 {
  margin: 8px 0 0;
  color: #061c35;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: .98;
}

.bc-course-links__text {
  max-width: 430px;
  color: #42556c;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.bc-course-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bc-course-links__card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(70, 190, 74, .22);
  border-radius: 18px;
  color: #061c35;
  background: #effade;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(42, 83, 28, .08);
}

.bc-course-links__card strong {
  display: block;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.08;
}

.bc-course-links__card span {
  display: block;
  margin-top: 12px;
  color: #42556c;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.bc-course-links__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(42, 83, 28, .14);
}

.bc-course-links__card--accent {
  color: #fff;
  background: #ff6c36;
}

.bc-course-links__card--accent span {
  color: rgba(255, 255, 255, .84);
}

.bc-course-links__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.bc-course-links__contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061c35;
  background: #f5f7fb;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.bc-privacy {
  min-height: 100vh;
  padding: 56px 20px 72px;
  color: #061c35;
  background: #effade;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.bc-privacy__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(42, 83, 28, .12);
}

.bc-privacy h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: .98;
}

.bc-privacy h2 {
  margin: 30px 0 10px;
  font-size: 28px;
}

.bc-privacy p,
.bc-privacy li {
  color: #42556c;
  font-size: 18px;
  line-height: 1.5;
}

.bc-privacy ul {
  padding-left: 24px;
}

.bc-privacy__back {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 26px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #ff6c36;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 720px) {
  .bc-floating {
    right: 14px;
    bottom: 14px;
  }

  .bc-floating__button {
    min-width: 50px;
    min-height: 50px;
    padding: 0 13px;
    font-size: 0;
  }

  .bc-floating__button svg {
    width: 24px;
    height: 24px;
  }

  .bc-privacy__inner {
    padding: 24px;
  }

  .bc-course-links {
    padding: 56px 16px;
  }

  .bc-course-links__head {
    display: block;
  }

  .bc-course-links__text {
    margin-top: 14px;
  }

  .bc-course-links__grid {
    grid-template-columns: 1fr;
  }
}
