/* **header styles** */
.bc-contact-page .bc-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 356px;
  width: 356px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  filter: blur(300px);
  z-index: -1;
  pointer-events: none;
}

/* **hero styles** */
.bc-hero {
  position: relative;
  z-index: 1;
}

.bc-software .bc-hero,
.bc-hardware .bc-hero {
  overflow: hidden;
}

.bc-software .bc-hero::after,
.bc-hardware .bc-hero::after {
  position: absolute;
  content: "";
  height: 250px;
  left: 0;
  bottom: -100px;
  width: 100%;
  background: linear-gradient(rgba(31, 49, 49, 0) 0%, rgb(31, 49, 49) 45%);
  z-index: 9;
  pointer-events: none;
}

.bc-contact-page .bc-hero {
  padding: 120px 0 100px;
  position: relative;
  z-index: 1;
}

.bc-use-cases .bc-hero__thumb,
.bc-use-cases .bc-hero__content,
.bc-contact-page .bc-hero__thumb,
.bc-contact-page .bc-hero__content,
.bc-consulting .bc-hero__thumb,
.bc-consulting .bc-hero__content,
.bc-home .bc-hero__thumb,
.bc-solutions .bc-hero__thumb,
.bc-solutions .bc-hero__content {
  flex: 1;
  max-width: 50%;
}

.bc-home .bc-hero__content {
  max-width: 800px;
}

.bc-software .bc-hero__thumb,
.bc-hardware .bc-hero__thumb {
  margin-bottom: -250px;
}

.bc-hero__thumb {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.bc-hero__vector {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: auto;
  z-index: -1;
}

.bc-inner .bc-bottom-gradient-text {
  font: 700 400px/1 var(--primary-font);
  background: linear-gradient(
    rgb(252, 252, 253) 0%,
    rgba(252, 252, 253, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: absolute;
  white-space: nowrap;
  bottom: -100px;
  left: 0;
  transform: translate(-5%, 0);
  opacity: 0.04;
  z-index: 9;
  pointer-events: none;
  letter-spacing: -10px;
}

@media (max-width: 991px) {
  .bc-contact-page .bc-hero {
    padding: 150px 0 80px;
  }
  .bc-contact-page .bc-hero__inner {
    flex-direction: column;
    gap: 32px;
  }

  .bc-inner .bc-bottom-gradient-text {
    font-size: 300px;
    bottom: 0;
  }

  .bc-contact-page .bc-hero__content,
  .bc-contact-page .bc-hero__thumb {
    text-align: start;
    max-width: 100%;
  }

  .bc-hardware .bc-hero__thumb,
  .bc-software .bc-hero__thumb {
    margin-bottom: -100px;
  }

  .bc-hero__vector {
    width: 1200px;
  }

  /* .bc-contact-page .bc-hero__title {
    font-size: 48px;
  } */

  .bc-contact-page .bc-hero__actions {
    align-items: flex-start;
  }

  .bc-contact-page .bc-hero__button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bc-contact-page .bc-hero {
    padding: 120px 0 60px;
  }
  .bc-inner .bc-bottom-gradient-text {
    font-size: 250px;
    bottom: 0;
  }
  .bc-hero__vector {
    width: 1800px;
  }
}

@media (max-width: 575px) {
  .bc-contact-page .bc-hero {
    padding: 120px 0 50px;
  }
  .bc-inner .bc-bottom-gradient-text {
    font-size: 200px;
  }
  .bc-hero__vector {
    width: 600px;
  }
}

/* **Contact styles** */
.bc-contact-page .bc-contact {
  position: relative;
  z-index: 1;
  overflow-y: visible;
}

.bc-contact-page .bc-contact__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.bc-contact-page .bc-contact__bg img {
  width: 100%;
  height: auto;
}

.bc-contact-page .bc-contact__inner {
  display: block;
  max-width: 715px;
  margin: 0 auto;
}

.bc-contact-page .bc-contact__content {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.bc-contact-page .bc-contact__title {
  text-align: center;
}

.bc-contact-page .bc-contact .bc-contact__button {
  width: 100%;
}

/* **Contact Preferences styles** */
.bc-contact__preferences {
  margin: 24px 0 0;
  flex-wrap: wrap;
  gap: 16px 60px;
}

.bc-contact__preferences-title {
  font: 500 20px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0 0;
  text-align: left;
}

.bc-contact__preferences-options {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bc-contact__preferences-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.bc-contact__preferences-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bc-contact__preferences-radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(252, 252, 253, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.bc-contact__preferences-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--light-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bc-contact__preferences-radio:checked + .bc-contact__preferences-radio-custom {
  border-color: var(--light-color);
}

.bc-contact__preferences-radio:checked
  + .bc-contact__preferences-radio-custom::after {
  opacity: 1;
}

.bc-contact__preferences-label {
  font: 400 18px/1.5 var(--global-font);
  color: var(--light-color);
  user-select: none;
}

.bc-contact__consent {
  margin-top: 24px;
}

.bc-contact__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.bc-contact__consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bc-contact__consent-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(252, 252, 253, 0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.bc-contact__consent-checkbox-custom::after {
  content: "";
  width: 5px;
  height: 8px;
  border: 2px solid var(--dark-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
}

.bc-contact__consent-checkbox:checked + .bc-contact__consent-checkbox-custom {
  border-color: var(--light-color);
  background-color: var(--light-color);
}

.bc-contact__consent-checkbox:checked
  + .bc-contact__consent-checkbox-custom::after {
  opacity: 1;
}

.bc-contact__consent-text {
  font: 400 14px/1.6 var(--global-font);
  color: var(--light-color);
  flex: 1;
}

.bc-contact__consent-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.bc-contact__consent-link:hover {
  color: var(--light-color);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .bc-contact__consent-text {
    font-size: 12px;
  }
}

/* **Info Cards styles** */
.bc-info {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.bc-contact-page .bc-info {
  padding: 120px 0;
}

.bc-info__inner {
  max-width: 100%;
}
.bc-software .bc-info__header,
.bc-home .bc-info__header {
  max-width: 800px;
}
.bc-info__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.bc-info__header-title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -2px;
}

.bc-info__header-description {
  font: 400 14px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-info__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-info__card {
  flex: 1;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  flex: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 220px;
}

.bc-software .bc-info__card,
.bc-hardware .bc-info__card,
.bc-home .bc-info__card {
  padding: 32px 20px;
}

/* Ensure animation classes work properly - cards start hidden */
.bc-info__card.bc-animate {
  opacity: 0 !important;
}

.bc-info__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-info__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-info__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

.bc-info__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
}

.bc-info__icon {
  width: 70px;
  height: 70px;
  background-color: rgba(20, 20, 22, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /* Gradient border using a pseudo-element */
}
.bc-info__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  padding: 1px; /* Border thickness */
  background: conic-gradient(transparent 30%, #fff 40%, transparent 50%);
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bc-info__icon svg {
  width: 30px;
  height: 30px;
}

.bc-info__title {
  font: 600 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
}

.bc-info__title:last-child {
  margin: 0;
}

.bc-info__text {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-contact-page .bc-info__text {
  color: var(--primary-color);
}

.bc-home .bc-info__text {
  font-size: 14px;
}

@media (max-width: 1023px) {
  .bc-info,
  .bc-contact-page .bc-info {
    padding: 80px 0;
  }
  .bc-info__header-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .bc-info,
  .bc-contact-page .bc-info {
    padding: 60px 0;
  }

  .bc-info__header {
    margin-bottom: 32px;
  }

  .bc-info__header-title {
    font-size: 42px;
  }

  .bc-info__cards {
    gap: 16px;
  }

  /* .bc-info__card {
    min-width: 100%;
    max-width: 100%;
  } */
}

@media (max-width: 767px) {
  .bc-info,
  .bc-contact-page .bc-info {
    padding: 50px 0;
  }

  .bc-info__header {
    margin-bottom: 24px;
  }

  .bc-info__card,
  .bc-software .bc-info__card,
  .bc-hardware .bc-info__card,
  .bc-home .bc-info__card {
    padding: 24px 20px;
  }

  .bc-info__header-title {
    font-size: 36px;
  }

  .bc-info__icon {
    width: 62px;
    height: 62px;
  }

  .bc-software .bc-info__cards,
  .bc-hardware .bc-info__cards {
    margin-right: -24px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

@media (max-width: 575px) {
  .bc-info {
    padding: 48px 0;
  }
  .bc-contact-page .bc-info {
    padding: 24px 0 48px;
  }

  .bc-software .bc-info__cards,
  .bc-hardware .bc-info__cards {
    margin-right: -15px;
  }

  .bc-info__header-title {
    font-size: 32px;
  }
}

/* ************************** */
/* ****** Solutions page***** */
/* ************************** */
.bc-consulting .bc-hero,
.bc-home .bc-hero,
.bc-solutions .bc-hero {
  padding: 95px 0 0;
  position: relative;
  z-index: 9;
  overflow: visible;
}

/* .bc-consulting .bc-hero__bg,
.bc-solutions .bc-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: url(../images/gradient-bg-02.webp) no-repeat;
  background-position: left;
  z-index: -1;
} */

.bc-consulting .bc-hero__inner,
.bc-home .bc-hero__inner,
.bc-solutions .bc-hero__inner {
  align-items: stretch;
}
.bc-home .bc-hero__content {
  padding: 340px 0 80px;
}

.bc-consulting .bc-hero__content,
.bc-solutions .bc-hero__content {
  padding: 100px 0 225px;
}

.bc-consulting .bc-hero__thumb,
.bc-home .bc-hero__thumb,
.bc-solutions .bc-hero__thumb {
  width: 100%;
  position: relative;
}

.bc-consulting .bc-hero__thumb img,
.bc-home .bc-hero__thumb img,
.bc-solutions .bc-hero__thumb img {
  height: 100%;
  width: 50vw;
  max-width: 50vw;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bc-solutions .bc-hero__thumb img {
  object-fit: contain;
}

@media (max-width: 1200px) {
  .bc-consulting .bc-hero__inner,
  .bc-home .bc-hero__inner,
  .bc-solutions .bc-hero__inner {
    gap: 40px;
  }

  .bc-home .bc-hero__content {
    padding: 250px 0 80px;
  }
}

@media (max-width: 991px) {
  .bc-home .bc-hero__content {
    padding: 150px 0 80px;
  }
  .bc-consulting .bc-hero__inner,
  .bc-home .bc-hero__inner,
  .bc-solutions .bc-hero__inner {
    flex-direction: column;
    gap: 0;
  }

  .bc-consulting .bc-hero__thumb,
  .bc-consulting .bc-hero__content,
  .bc-home .bc-hero__thumb,
  .bc-home .bc-hero__content,
  .bc-solutions .bc-hero__thumb,
  .bc-solutions .bc-hero__content {
    flex: 1;
    max-width: 100%;
  }

  .bc-consulting .bc-hero__content,
  .bc-solutions .bc-hero__content {
    padding: 48px 0 32px;
  }

  .bc-consulting .bc-hero__thumb img,
  .bc-home .bc-hero__thumb img {
    width: 110vw;
    /* height: 100%; */
    object-fit: cover;
    position: relative;
    max-width: 110vw;
    /* margin-left: calc((-100vw + clamp(320px, 92%, 1250px)) / 2); */
    margin-left: -8%;
  }
}

@media (max-width: 767px) {
  .bc-home .bc-hero__content {
    padding: 100px 0 90px;
  }
  .bc-consulting .bc-hero,
  .bc-home .bc-hero,
  .bc-solutions .bc-hero {
    padding: 80px 0 0;
  }
}
@media (max-width: 575px) {
  /* .bc-consulting .bc-hero__inner,
  .bc-solutions .bc-hero__inner {
    gap: 32px;
  } */
}

/* ************************** */
/* ****** Portfolio Section ***** */
/* ************************** */
.bc-portfolio {
  padding: 120px 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-solutions .bc-portfolio {
  padding: 60px 0 120px;
}

.bc-hardware .bc-portfolio {
  padding: 50px 0 60px;
}

.bc-consulting .bc-portfolio {
  padding: 60px 0;
}

.bc-consulting .bc-portfolio::after {
  position: absolute;
  content: "";
  height: 356px;
  aspect-ratio: 1/1;
  right: 0;
  top: 0;
  background-color: var(--primary-color);
  filter: blur(400px);
}

.bc-portfolio__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-portfolio__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-portfolio__inner {
  position: relative;
  z-index: 1;
}

.bc-portfolio__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.bc-portfolio__header-content {
  flex: 1;
}

.bc-portfolio__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-portfolio__tagline {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0;
  max-width: 565px;
}

.bc-portfolio__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bc-portfolio__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-color);
}

.bc-portfolio__nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/*
.bc-portfolio__nav-btn:hover {
  background-color: var(--light-color);
  border-color: var(--light-color);
  color: var(--dark-color);
} */

.bc-portfolio__nav-btn svg {
  width: 20px;
  height: 20px;
}

.bc-portfolio__swiper {
  width: 100%;
}

.bc-portfolio__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.bc-portfolio__slide {
  height: auto;
  display: flex;
}

.bc-portfolio__card {
  width: 100%;
  min-width: 0;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.bc-portfolio__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-portfolio__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.bc-home .bc-portfolio__card-image {
  aspect-ratio: 1/1;
}

.bc-portfolio__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bc-portfolio__card:hover .bc-portfolio__card-image img {
  transform: scale(1.05);
}

.bc-portfolio__card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-portfolio__card-title {
  font: 700 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.bc-portfolio__card-title:last-child {
  margin: 0;
}

.bc-portfolio__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-portfolio__card-item {
  font: 500 20px/1.5 var(--global-font);
  color: rgba(252, 252, 253, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}

.bc-portfolio__card-item span {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-portfolio {
    padding: 80px 0;
  }

  .bc-solutions .bc-portfolio {
    padding: 40px 0 80px;
  }
  .bc-consulting .bc-portfolio,
  .bc-hardware .bc-portfolio {
    padding: 40px 0;
  }

  .bc-portfolio__title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .bc-portfolio {
    padding: 60px 0;
  }

  .bc-solutions .bc-portfolio {
    padding: 30px 0 60px;
  }
  .bc-consulting .bc-portfolio,
  .bc-hardware .bc-portfolio {
    padding: 30px 0;
  }

  .bc-portfolio__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-portfolio {
    padding: 50px 0;
  }
  .bc-solutions .bc-portfolio {
    padding: 24px 0 48px;
  }
  .bc-consulting .bc-portfolio,
  .bc-hardware .bc-portfolio {
    padding: 24px 0;
  }

  .bc-portfolio__title {
    font-size: 36px;
  }

  .bc-portfolio__header {
    margin-bottom: 32px;
  }

  .bc-portfolio__card {
    min-width: 100%;
    max-width: 100%;
  }

  .bc-portfolio__nav {
    display: none;
  }

  .bc-portfolio__swiper {
    width: 100vw;
  }

  .bc-portfolio__slide {
    /* width: 325px; */
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .bc-portfolio {
    padding: 48px 0;
  }

  .bc-portfolio__title {
    font-size: 32px;
  }

  .bc-portfolio__header {
    margin-bottom: 24px;
  }

  .bc-portfolio__nav-btn {
    width: 40px;
    height: 40px;
  }

  .bc-portfolio__nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .bc-portfolio__card-content {
    padding: 16px;
  }
}

/* ************************** */
/* ****** Feature Section ***** */
/* ************************** */
.bc-feature {
  padding: 65px 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-feature__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-feature__inner {
  position: relative;
  z-index: 1;
}

.bc-feature__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.bc-feature__header-content {
  flex: 1;
}

.bc-feature__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-feature__tagline {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0;
  max-width: 565px;
}

.bc-feature__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bc-feature__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-color);
}

.bc-feature__nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.bc-feature__nav-btn svg {
  width: 20px;
  height: 20px;
}

.bc-feature__swiper {
  width: 100vw;
}

.bc-feature__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.bc-feature__slide {
  height: auto;
  width: 410px;
  display: flex;
}

.bc-feature__card {
  width: 100%;
  min-width: 0;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.bc-feature__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-feature__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.bc-home .bc-feature__card-image {
  aspect-ratio: 1/1;
}

.bc-feature__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bc-feature__card:hover .bc-feature__card-image img {
  transform: scale(1.05);
}

.bc-feature__card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-feature__card-title {
  font: 700 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.bc-feature__card-title:last-child {
  margin: 0;
}

.bc-feature__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-feature__card-item {
  font: 500 20px/1.5 var(--global-font);
  color: rgba(252, 252, 253, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}

.bc-feature__card-item span {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-feature {
    padding: 60px 0;
  }

  .bc-feature__title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .bc-feature {
    padding: 50px 0;
  }

  .bc-feature__title {
    font-size: 42px;
  }

  .bc-feature__header {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .bc-feature {
    padding: 48px 0;
  }

  .bc-feature__title {
    font-size: 36px;
  }

  .bc-feature__header {
    margin-bottom: 40px;
  }

  .bc-feature__card {
    min-width: 100%;
    max-width: 100%;
  }

  .bc-feature__nav {
    display: none;
  }

  .bc-feature__slide {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .bc-feature {
    padding: 48px 0;
  }

  .bc-feature__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .bc-feature__header {
    margin-bottom: 32px;
  }

  .bc-feature__nav-btn {
    width: 40px;
    height: 40px;
  }

  .bc-feature__nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .bc-feature__card-content {
    padding: 16px;
  }
}

/* ************ */
/* ******  Brand Testimonials  ******
/* ************ */
.bc-brand-testimonials {
  padding: 60px 0 120px;
  position: relative;
}

.bc-brand-testimonials__inner {
  position: relative;
}

.bc-brand-testimonials__swiper {
  position: relative;
  z-index: 1;
}

.bc-brand-testimonials__swiper .swiper-slide {
  height: auto !important;
}

.bc-brand-testimonial {
  text-align: center;
  max-width: 1060px;
  padding: 0 80px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.bc-brand-testimonial__quote {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  position: relative;
  flex: 1;
}

.bc-brand-testimonial__quote p {
  font: 400 42px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  font-style: normal;
}

.bc-brand-testimonial__separator {
  width: 100%;
  max-width: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(230, 244, 241, 0.2) 10%,
    rgba(205, 233, 227, 0.4) 20%,
    rgba(181, 221, 212, 0.6) 30%,
    rgba(156, 210, 198, 0.8) 40%,
    rgb(131, 199, 184) 50%,
    rgba(135, 190, 178, 0.8) 60%,
    rgba(140, 181, 172, 0.6) 70%,
    rgba(144, 171, 165, 0.4) 80%,
    rgba(149, 162, 159, 0.2) 90%,
    rgba(153, 153, 153, 0) 100%
  );
  margin: 0 auto 20px;
}

.bc-brand-testimonial__logo {
  max-width: 215px;
  margin: 0 auto;
}

.bc-brand-testimonial__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  color: var(--light-color);
  z-index: 10;
}

.bc-brand-testimonial__nav-btn svg {
  width: 20px;
  height: 20px;
}

.bc-brand-testimonial__nav-btn--prev {
  left: 15px;
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--dark-color);
}

.bc-brand-testimonial__nav-btn--next {
  right: 15px;
}

.bc-brand-testimonial__nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.bc-brand-testimonial__nav-btn--active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-brand-testimonials {
    padding: 40px 0 80px;
  }

  .bc-brand-testimonial__quote p {
    font-size: 36px;
  }

  .bc-brand-testimonial__nav-btn {
    width: 40px;
    height: 40px;
  }

  .bc-brand-testimonial__nav-btn--prev {
    left: 10px;
  }

  .bc-brand-testimonial__nav-btn--next {
    right: 10px;
  }
  .bc-brand-testimonial__logo {
    max-width: 180px;
  }
}

@media (max-width: 991px) {
  .bc-brand-testimonial__quote p {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .bc-brand-testimonials {
    padding: 30px 0 60px;
  }
  .bc-brand-testimonial {
    padding: 0;
  }

  .bc-brand-testimonial__logo {
    max-width: 166px;
  }

  .bc-brand-testimonial__logo-text {
    font-size: 28px;
  }

  .bc-brand-testimonial__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }
  .bc-brand-testimonial__nav-btn {
    width: 36px;
    height: 36px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    padding: 0;
  }

  .bc-brand-testimonial__nav-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  .bc-brand-testimonials {
    padding: 24px 0 48px;
  }
}

/* ************************** */
/* ******  Promo Banner  ******
/* ************************** */
.bc-promo-banner {
  padding: 60px 0 120px;
  position: relative;
  z-index: 1;
}

.bc-promo-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1010px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
}

.bc-promo-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bc-promo-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-promo-banner__content {
  position: relative;
  padding: 56px 60px;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.bc-promo-banner__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-promo-banner__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bc-promo-banner__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-promo-banner__button {
  display: inline-block;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-promo-banner {
    padding: 40px 0 80px;
  }

  .bc-promo-banner__title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .bc-promo-banner__dsc {
    margin-bottom: 36px;
  }
}

@media (max-width: 991px) {
  .bc-promo-banner {
    padding: 30px 0 60px;
  }
  .bc-promo-banner__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-promo-banner {
    padding: 24px 0 48px;
  }

  .bc-promo-banner__content {
    padding: 48px 16px;
  }

  .bc-promo-banner__title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .bc-promo-banner__dsc {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

@media (max-width: 575px) {
  .bc-promo-banner__title {
    font-size: 32px;
  }
}

/* ************************** */
/* ******  Wellness Section  ******
/* ************************** */
.bc-wellness {
  padding: 120px 0;
  background: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-wellness__bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
}

.bc-wellness__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bc-wellness__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-wellness__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}

.bc-wellness__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-wellness__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-wellness__image {
  margin: 0 auto 40px;
  max-width: 100%;
  text-align: center;
}

.bc-wellness__image img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-wellness__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bc-wellness__feature {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-wellness__icon {
  width: 70px;
  height: 70px;
  background-color: rgba(20, 20, 22, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bc-wellness__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(transparent 30%, #fff 40%, transparent 50%);
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.bc-wellness__icon svg {
  width: 30px;
  height: 30px;
}

.bc-wellness__feature-text {
  font: 400 18px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-wellness {
    padding: 80px 0;
  }

  .bc-wellness__title {
    font-size: 48px;
  }

  .bc-wellness__features {
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .bc-wellness__title {
    font-size: 42px;
  }
  .bc-wellness {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .bc-wellness {
    padding: 50px 0;
  }

  .bc-wellness__header {
    margin-bottom: 32px;
  }

  .bc-wellness__title {
    font-size: 36px;
  }

  .bc-wellness__dsc {
    font-size: 14px;
  }

  .bc-wellness__image {
    margin-bottom: 32px;
  }

  .bc-wellness__features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .bc-wellness__feature {
    max-width: 100%;
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }

  .bc-wellness__icon {
    margin: 0;
    height: 62px;
    width: 62px;
  }

  .bc-wellness__feature-text {
    font-size: 16px;
    text-align: start;
  }
}

@media (max-width: 575px) {
  .bc-wellness {
    padding: 48px 0;
  }

  .bc-wellness__title {
    font-size: 32px;
  }
}

/* ************************** */
/* ******  Vending Section  ******
/* ************************** */
.bc-vending {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.bc-vending__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bc-vending__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-vending__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.bc-vending__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.bc-vending__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-vending__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
}

.bc-vending__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-vending__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.bc-vending__card {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.bc-vending__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-vending__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.44/1;
  overflow: hidden;
}

.bc-vending__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bc-vending__card:hover .bc-vending__card-image img {
  transform: scale(1.05);
}

.bc-vending__card-title {
  font: 600 20px/1.3 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.bc-vending__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-vending__button {
  display: inline-block;
}

/* Responsive */
@media (max-width: 1023px) {
  /* .bc-vending {
    padding: 80px 0;
  } */

  .bc-vending__header {
    margin-bottom: 32px;
  }

  .bc-vending__title {
    font-size: 48px;
  }

  .bc-vending__subtitle {
    font-size: 18px;
  }

  .bc-vending__cards {
    gap: 20px;
  }

  .bc-vending__card-title {
    font-size: 18px;
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .bc-vending__title {
    font-size: 42px;
  }

  .bc-vending__cards {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 36px;
    gap: 16px;
  }

  /* .bc-vending__card {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
  } */
}

@media (max-width: 767px) {
  .bc-vending {
    padding: 60px 0;
  }

  .bc-vending__header {
    margin-bottom: 24px;
  }

  .bc-vending__title {
    font-size: 36px;
  }

  .bc-vending__subtitle {
    font-size: 16px;
  }

  .bc-vending__dsc {
    font-size: 14px;
  }

  .bc-vending__cards {
    gap: 12px;
    margin-bottom: 32px;
  }

  .bc-vending__card {
    min-width: 100%;
    max-width: 100%;
  }

  .bc-vending__card-title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bc-vending {
    padding: 48px 0;
  }

  .bc-vending__title {
    font-size: 32px;
  }

  .bc-vending__card-image {
    aspect-ratio: 1.3/1;
  }
}

@media (max-width: 480px) {
  .bc-vending__cards {
    grid-template-columns: 1fr;
  }
}

/* Ensure animation classes work properly - vending cards start hidden */
.bc-vending__card.bc-animate {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.bc-vending__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-vending__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-vending__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

/* Animation delays for staggered effect */
.bc-vending__card.bc-animate--delay-300 {
  transition-delay: 0.3s;
}

.bc-vending__card.bc-animate--delay-400 {
  transition-delay: 0.4s;
}

.bc-vending__card.bc-animate--delay-500 {
  transition-delay: 0.5s;
}

.bc-vending__card.bc-animate--delay-600 {
  transition-delay: 0.6s;
}

/* ************************** */
/* ******  Bodycheck Section  ******
/* ************************** */
.bc-checkup {
  padding: 120px 0;
  background: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-checkup__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.bc-checkup__thumb {
  flex: 0 0 auto;
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.bc-checkup__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-checkup__content {
  flex: 1;
  min-width: 0;
}

.bc-checkup__header {
  max-width: 810px;
  margin: 0 auto 40px;
  text-align: center;
}

.bc-checkup__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-checkup__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
}

.bc-checkup__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-checkup__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.bc-checkup__feature {
  flex: 1 1 calc(50% - 1px);
  /* min-width: 100px; */
  background: var(--dark-color);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  transition: background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: -1px;
}

.bc-checkup__feature:last-child:nth-child(odd) {
  flex-direction: row;
}

.bc-checkup__feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* .bc-checkup__feature-icon svg {
  width: 30px;
  height: 30px;
} */

.bc-checkup__feature-text {
  font: 400 20px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-checkup__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bc-checkup__button {
  display: inline-block;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-checkup {
    padding: 80px 0;
  }

  .bc-checkup__inner {
    gap: 40px;
  }

  .bc-checkup__title {
    font-size: 48px;
  }

  .bc-checkup__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .bc-checkup__inner {
    flex-direction: column;
    gap: 40px;
  }

  .bc-checkup__thumb {
    max-width: 100%;
    width: 100%;
  }

  .bc-checkup__title {
    font-size: 42px;
  }

  .bc-checkup__features {
    margin-bottom: 35px;
  }

  .bc-checkup__feature {
    flex: 1 1 calc(50% - 1px);
  }
}

@media (max-width: 767px) {
  .bc-checkup {
    padding: 60px 0;
  }

  .bc-checkup__header {
    margin-bottom: 30px;
  }

  .bc-checkup__title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .bc-checkup__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .bc-checkup__dsc {
    font-size: 14px;
  }

  .bc-checkup__features {
    margin-bottom: 30px;
  }

  .bc-checkup__feature {
    /* flex: 1 1 100%; */
    padding: 20px 16px;
  }

  .bc-checkup__feature-icon {
    width: 30px;
    height: 30px;
  }

  .bc-checkup__feature-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bc-checkup {
    padding: 48px 0;
  }

  .bc-checkup__title {
    font-size: 32px;
  }
  .bc-checkup__feature-text {
    font-size: 14px;
  }

  .bc-checkup__actions {
    justify-content: center;
  }
}

/* ************************** */
/* ******  Access Secure Section  ******
/* ************************** */
.bc-access-secure {
  padding: 120px 0;
  background: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-access-secure__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-access-secure__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bc-access-secure__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.bc-access-secure__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-access-secure__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 24px;
}

.bc-access-secure__dsc {
  font: 400 20px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-access-secure__content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bc-access-secure__image {
  flex: 1;
  position: relative;
}

.bc-access-secure__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.bc-access-secure__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bc-access-secure__card {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bc-access-secure__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-access-secure__card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(20, 20, 22, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bc-access-secure__card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(transparent 30%, #fff 40%, transparent 50%);
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.bc-access-secure__card-icon svg {
  width: 30px;
  height: 30px;
}

.bc-access-secure__card-text {
  font: 400 20px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0;
  text-align: left;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-access-secure {
    padding: 80px 0;
  }

  .bc-access-secure__header {
    margin-bottom: 32px;
  }

  .bc-access-secure__title {
    font-size: 48px;
  }

  .bc-access-secure__subtitle {
    font-size: 18px;
  }

  .bc-access-secure__dsc {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .bc-access-secure__content {
    flex-direction: column;
  }

  .bc-access-secure__image {
    flex: 0 0 auto;
    width: 100%;
  }

  .bc-access-secure__grid {
    width: 100%;
  }

  .bc-access-secure__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-access-secure {
    padding: 60px 0;
  }

  .bc-access-secure__header {
    margin-bottom: 24px;
  }

  .bc-access-secure__title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .bc-access-secure__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .bc-access-secure__dsc {
    font-size: 16px;
    line-height: 1.5;
  }

  .bc-access-secure__content {
    gap: 16px;
  }

  .bc-access-secure__grid {
    gap: 16px;
  }

  .bc-access-secure__card {
    padding: 24px 20px;
  }

  .bc-access-secure__card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
  }

  .bc-access-secure__card-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bc-access-secure {
    padding: 48px 0;
  }

  .bc-access-secure__title {
    font-size: 32px;
  }

  .bc-access-secure__grid {
    gap: 12px;
  }

  .bc-access-secure__card {
    padding: 16px;
  }
}

/* Ensure animation classes work properly - access-secure cards start hidden */
.bc-access-secure__card.bc-animate {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.bc-access-secure__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-access-secure__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-access-secure__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

/* Animation delays for staggered effect */
.bc-access-secure__card.bc-animate--delay-300 {
  transition-delay: 0.3s;
}

.bc-access-secure__card.bc-animate--delay-400 {
  transition-delay: 0.4s;
}

.bc-access-secure__card.bc-animate--delay-500 {
  transition-delay: 0.5s;
}

.bc-access-secure__card.bc-animate--delay-600 {
  transition-delay: 0.6s;
}

/* ************************** */
/* ******  Plug Play Inspire Section  ******
/* ************************** */
.bc-plug-play {
  padding: 120px 0 100px;
  position: relative;
  z-index: 1;
}

.bc-plug-play__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bc-plug-play__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-plug-play__inner {
  position: relative;
  z-index: 2;
}

.bc-plug-play__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.bc-plug-play__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-plug-play__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
}

.bc-plug-play__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-plug-play__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bc-plug-play__card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  border-radius: 20px;
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.bc-plug-play__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-plug-play__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.bc-plug-play__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bc-plug-play__card:hover .bc-plug-play__card-image img {
  transform: scale(1.05);
}

.bc-plug-play__card-label {
  padding: 24px;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-plug-play__card-label span {
  font: 600 26px/1.3 var(--primary-font);
  margin: 0;
}

.bc-plug-play__card-label-bold {
  color: var(--light-color);
}

.bc-plug-play__card-label-separator {
  color: var(--light-color);
}

.bc-plug-play__card-label-text {
  color: var(--primary-color);
}

.bc-plug-play__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-plug-play__button {
  display: inline-block;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-plug-play {
    padding: 80px 0;
  }

  .bc-plug-play__header {
    margin-bottom: 50px;
  }

  .bc-plug-play__title {
    font-size: 48px;
    margin-bottom: 14px;
  }

  .bc-plug-play__subtitle {
    font-size: 18px;
  }

  .bc-plug-play__cards {
    gap: 20px;
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  .bc-plug-play__title {
    font-size: 42px;
  }

  .bc-plug-play__card {
    min-width: calc(50% - 16px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .bc-plug-play {
    padding: 60px 0;
  }

  .bc-plug-play__header {
    margin-bottom: 40px;
  }

  .bc-plug-play__title {
    font-size: 36px;
  }

  .bc-plug-play__subtitle {
    font-size: 16px;
  }

  .bc-plug-play__dsc {
    font-size: 14px;
  }

  .bc-plug-play__cards {
    /* flex-direction: column; */
    gap: 16px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .bc-plug-play {
    padding: 48px 0;
  }

  .bc-plug-play__title {
    font-size: 32px;
  }
  .bc-plug-play__cards {
    flex-direction: column;
  }

  .bc-plug-play__card {
    width: 100%;
    max-width: 100%;
  }
}

/* Ensure animation classes work properly - plug-play cards start hidden */
.bc-plug-play__card.bc-animate {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.bc-plug-play__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-plug-play__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-plug-play__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

/* Animation delays for staggered effect */
.bc-plug-play__card.bc-animate--delay-300 {
  transition-delay: 0.3s;
}

.bc-plug-play__card.bc-animate--delay-400 {
  transition-delay: 0.4s;
}

.bc-plug-play__card.bc-animate--delay-500 {
  transition-delay: 0.5s;
}

.bc-plug-play__card.bc-animate--delay-600 {
  transition-delay: 0.6s;
}

/* ************************** */
/* ******  Success Packages Section  ******
/* ************************** */
.bc-success-packages {
  padding: 120px 0 60px;
  position: relative;
  z-index: 1;
  background-color: var(--dark-color);
}

.bc-success-packages__inner {
  position: relative;
  z-index: 2;
}

.bc-success-packages__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.bc-success-packages__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.bc-success-packages__dsc {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0;
}

.bc-success-packages__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-success-packages__card {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

/* Ensure animation classes work properly - cards start hidden */
.bc-success-packages__card.bc-animate {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2) !important;
}

.bc-success-packages__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-success-packages__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-success-packages__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

@media (min-width: 992px) {
  .bc-success-packages__card {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
  }
}

.bc-success-packages__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-success-packages__card-image {
  position: relative;
  width: 100%;
  /* height: 100%;  */
  /* aspect-ratio: 1.4/1; */
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

@media (min-width: 992px) {
  .bc-success-packages__card-image {
    width: 45%;
    min-width: 45%;
    flex-shrink: 0;
    border-radius: 20px 0 0 20px;
  }
}

.bc-success-packages__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bc-success-packages__card:hover .bc-success-packages__card-image img {
  transform: scale(1.05);
}

.bc-success-packages__card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .bc-success-packages__card-content {
    width: 55%;
    flex: 1;
    border-radius: 0 20px 20px 0;
  }
}

.bc-success-packages__card-title {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-success-packages__card-title-separator {
  color: rgba(252, 252, 253, 0.5);
  font-weight: 400;
}

.bc-success-packages__card-title .bc-success-packages__card-title-text {
  color: var(--primary-color);
}

.bc-success-packages__card-subtitle {
  font: 600 16px/1.2 var(--global-font);
  color: var(--light-color);
  margin: 0 0 8px 0;
}

.bc-success-packages__card-text {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0 0 24px 0;
  flex: 1;
}

.bc-success-packages__card-action {
  margin-top: auto;
}

.bc-success-packages__button {
  display: inline-block;
  padding: 14px 24px;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-success-packages {
    padding: 80px 0 40px;
  }

  .bc-success-packages__header {
    margin-bottom: 50px;
  }

  .bc-success-packages__title {
    font-size: 48px;
    margin-bottom: 14px;
  }
}

@media (max-width: 991px) {
  .bc-success-packages__title {
    font-size: 42px;
  }

  .bc-success-packages__card {
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    flex-direction: column;
  }

  .bc-success-packages__card-image {
    width: 100%;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 1.72/1;
  }

  .bc-success-packages__card-content {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .bc-success-packages {
    padding: 60px 0 30px;
  }

  .bc-success-packages__header {
    margin-bottom: 40px;
  }

  .bc-success-packages__title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .bc-success-packages__dsc {
    font-size: 13px;
  }

  .bc-success-packages__cards {
    flex-direction: column;
    gap: 16px;
  }

  .bc-success-packages__card {
    min-width: 100%;
    max-width: 100%;
  }

  .bc-success-packages__card-content {
    padding: 16px;
  }

  .bc-success-packages__card-text {
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .bc-success-packages {
    padding: 48px 0 24px;
  }

  .bc-success-packages__title {
    font-size: 32px;
  }
}

/* ************************** */
/* ******  Contact & Access Section  ******
/* ************************** */
.bc-contact-access {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background-color: var(--dark-color);
}

.bc-contact-access__inner {
  display: flex;
  gap: 100px;
  align-items: flex-end;
}

.bc-contact-access__content {
  flex: 1;
  min-width: 0;
}

.bc-contact-access__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.bc-contact-access__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-contact-access__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-contact-access__item--active {
  grid-template-rows: auto 1fr;
}

.bc-contact-access__item:last-child {
  border-bottom: none;
}

.bc-contact-access__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 20px;
  min-height: 32px;
  overflow: hidden;
}

.bc-contact-access__item-title {
  font: 600 26px/1.2 var(--primary-font);
  color: rgba(252, 252, 253, 0.3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.bc-contact-access__item--active .bc-contact-access__item-title {
  color: #fff;
}

.bc-contact-access__item-title-separator {
  font-weight: 400;
}

.bc-contact-access__item-title-text {
  transition: color 0.3s ease;
}

.bc-contact-access__item--active .bc-contact-access__item-title-text {
  color: var(--primary-color);
}

.bc-contact-access__item-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 0 0 2px 2px;
}

.bc-contact-access__item-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary-color);
  border-radius: 0 0 2px 2px;
  will-change: width;
}

.bc-contact-access__item-dsc-wrapper {
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-5px);
  will-change: opacity, transform;
}

.bc-contact-access__item--active .bc-contact-access__item-dsc-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.bc-contact-access__item-dsc {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0;
  padding-top: 16px;
}

.bc-contact-access__item-image {
  display: none;
  margin-top: 24px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.4/1;
}

.bc-contact-access__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-contact-access__image {
  flex: 0 0 500px;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}

.bc-contact-access__image-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.bc-contact-access__image-item--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.bc-contact-access__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1500px) {
  .bc-contact-access__inner {
    gap: 50px;
  }
}

@media (max-width: 1023px) {
  .bc-contact-access {
    padding: 80px 0;
  }

  .bc-contact-access__title {
    font-size: 48px;
  }

  .bc-contact-access__inner {
    gap: 40px;
  }

  .bc-contact-access__image {
    flex: 0 0 400px;
  }
}

@media (max-width: 991px) {
  .bc-contact-access__title {
    font-size: 42px;
  }

  .bc-contact-access__inner {
    gap: 30px;
  }

  .bc-contact-access__image {
    flex: 0 0 350px;
  }
}

@media (max-width: 767px) {
  .bc-contact-access {
    padding: 60px 0;
  }

  .bc-contact-access__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .bc-contact-access__inner {
    flex-direction: column;
    gap: 0;
  }

  .bc-contact-access__content {
    order: 1;
  }

  .bc-contact-access__image {
    flex: none;
    width: 100%;
    margin-top: 24px;
    order: 2;
    aspect-ratio: 1.4/1;
  }

  .bc-contact-access__item {
    padding: 20px 0;
  }

  .bc-contact-access__item-header {
    margin-bottom: 8px;
  }

  .bc-contact-access__item-title {
    font-size: 20px;
  }

  .bc-contact-access__item-dsc {
    font-size: 13px;
  }

  /* Show image after active item description on mobile */
  .bc-contact-access__item-image {
    display: block;
  }

  .bc-contact-access__item:not(.bc-contact-access__item--active)
    .bc-contact-access__item-image {
    display: none;
  }

  .bc-contact-access__item--active {
    margin-bottom: 0;
  }

  .bc-contact-access__item--active + .bc-contact-access__item {
    margin-top: 24px;
  }

  /* Hide desktop image on mobile */
  .bc-contact-access__image {
    display: none;
  }
}

@media (max-width: 575px) {
  .bc-contact-access {
    padding: 48px 0;
  }

  .bc-contact-access__title {
    font-size: 32px;
  }

  .bc-contact-access__item {
    padding: 16px 0;
  }

  .bc-contact-access__item-title {
    font-size: 20px;
  }

  .bc-contact-access__item-dsc {
    font-size: 12px;
  }
}

/* ************************** */
/* ******  Add ons & Specials Section  ******
/* ************************** */
/* .bc-addons-specials {
  padding: 120px 0;
  background: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-addons-specials__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-addons-specials__items-wrap {
  overflow: hidden;
}

.bc-addons-specials__group:not(:last-child) {
  margin-bottom: 80px;
}

.bc-addons-specials__group-title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

.bc-addons-specials__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin: -60px -40px;
}

.bc-addons-specials__items--addons,
.bc-addons-specials__items--specials {
  justify-content: center;
}

.bc-addons-specials__item {
  flex: 1;
  min-width: 320px;
  background: var(--dark-color);
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.bc-addons-specials__item:hover {
  background: var(--dark-color);
}

.bc-addons-specials__item-title {
  font: 600 20px/1.3 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-addons-specials__item-title-bold {
  color: var(--light-color);
}

.bc-addons-specials__item-title-separator {
  color: var(--light-color);
}

.bc-addons-specials__item-title-text {
  color: #83c7b8;
}

.bc-addons-specials__item-text {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.8);
  margin: 0;
}

@media (max-width: 1200px) {
  .bc-addons-specials__items {
    margin: -40px -30px;
  }

  .bc-addons-specials__item {
    padding: 40px 30px;
  }
}
@media (max-width: 1023px) {
  .bc-addons-specials {
    padding: 80px 0;
  }

  .bc-addons-specials__group-title {
    font-size: 48px;
    margin-bottom: 36px;
  }

  .bc-addons-specials__items {
    margin: -30px -24px;
  }

  .bc-addons-specials__item {
    padding: 30px 24px;
  }
}

@media (max-width: 991px) {
  .bc-addons-specials__group-title {
    font-size: 42px;
  }

  .bc-addons-specials__item {
    min-width: calc(50% - 0.5px);
  }
}

@media (max-width: 767px) {
  .bc-addons-specials {
    padding: 60px 0;
  }

  .bc-addons-specials__group-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .bc-addons-specials__group:not(:last-child) {
    margin-bottom: 60px;
  }
  .bc-addons-specials__items {
    margin: -16px;
  }

  .bc-addons-specials__item {
    padding: 16px;
  }

  .bc-addons-specials__item-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .bc-addons-specials__item-text {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .bc-addons-specials {
    padding: 50px 0;
  }

  .bc-addons-specials__group-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .bc-addons-specials__item {
    padding: 20px 16px;
  }
} */

/* ************************** */
/* ****** Add ons Section ****** */
/* ************************** */
.bc-addons {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  background-color: var(--dark-color);
}

.bc-addons::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 0;
  height: 356px;
  width: 356px;
  border-radius: 50%;
  background-color: var(--primary-color);
  filter: blur(400px);
  z-index: -1;
  pointer-events: none;
}

.bc-addons__inner {
  position: relative;
  z-index: 2;
}

.bc-addons__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  text-align: left;
  margin: 0 auto 60px;
}

.bc-addons__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.bc-addons__cards {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.bc-addons__card {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

/* Ensure animation classes work properly - cards start hidden */
.bc-addons__card.bc-animate {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2),
    transform 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2) !important;
}

.bc-addons__card.bc-animate--fadeInUp {
  transform: translateY(50px) !important;
}

.bc-addons__card.bc-animate.bc-animate--visible {
  opacity: 1 !important;
}

.bc-addons__card.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0) !important;
}

.bc-addons__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-addons__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.bc-addons__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bc-addons__card:hover .bc-addons__card-image img {
  transform: scale(1.05);
}

.bc-addons__card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.bc-addons__card-title {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-addons__card-title-separator {
  color: rgba(252, 252, 253, 0.5);
  font-weight: 400;
}

.bc-addons__card-title-text {
  color: var(--primary-color);
}

.bc-addons__card-subtitle {
  font: 600 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0 0 8px 0;
}

.bc-addons__card-text {
  font: 400 14px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.7);
  margin: 0 0 16px 0;
  flex: 1;
}

.bc-addons__card-action {
  margin-top: auto;
}

.bc-addons__button {
  display: inline-block;
}

.bc-addons__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bc-addons__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-color);
}

.bc-addons__nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.bc-addons__nav-btn svg {
  width: 20px;
  height: 20px;
}

.bc-addons__swiper {
  padding-bottom: 24px;
}

.bc-addons__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.bc-addons__swiper .swiper-slide {
  width: 360px;
  display: flex;
  height: auto;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1199px) {
  .bc-addons__swiper .swiper-slide {
    width: 320px;
  }
}

@media (max-width: 1023px) {
  .bc-addons {
    padding: 40px 0;
  }

  .bc-addons__header {
    margin-bottom: 50px;
  }

  .bc-addons__title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .bc-addons {
    padding: 30px 0;
  }

  .bc-addons__header {
    margin-bottom: 40px;
  }

  .bc-addons__title {
    font-size: 36px;
  }

  .bc-addons__nav {
    display: none;
  }

  .bc-addons__card-content {
    padding: 16px;
  }

  .bc-addons__card-title {
    font-size: 24px;
  }

  .bc-addons__swiper .swiper-slide {
    width: min(320px, 100%);
  }
}

@media (max-width: 575px) {
  .bc-addons {
    padding: 24px 0;
  }

  .bc-addons__title {
    font-size: 32px;
  }
}

/* ************** */
/* ****** Smart Coach Slider Section ****** */
/* ************************** */
.bc-smart-coach {
  padding: 60px 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-smart-coach__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-smart-coach__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-smart-coach__wrapper {
  position: relative;
}
.bc-specials__swiper,
.bc-smart-coach__swiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.bc-smart-coach__slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.bc-smart-coach__slide.swiper-slide-active {
  opacity: 1;
}

.bc-smart-coach__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image Section */
.bc-smart-coach__image-wrapper {
  flex: 0 0 485px;
  position: relative;
}

.bc-smart-coach__image {
  width: 100%;
  aspect-ratio: 0.85/1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bc-smart-coach__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Content Section */
.bc-smart-coach__content {
  flex: 1;
  max-width: 600px;
}

.bc-smart-coach__section-title,
.bc-smart-coach__title {
  font: 700 42px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.bc-smart-coach__section-title {
  font: 700 54px/1.15 var(--primary-font);
  margin-bottom: 40px;
}

.bc-smart-coach .bc-smart-coach__section-title {
  text-align: center;
}
.bc-smart-coach__subtitle,
.bc-smart-coach__description {
  font: 400 16px/1.6 var(--global-font);
  color: #f5f5f5;
  margin: 0 0 30px;
}

.bc-smart-coach__subtitle {
  font-weight: 700;
}

.bc-smart-coach__features-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.bc-smart-coach__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bc-smart-coach__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font: 600 20px/1.4 var(--primary-font);
  color: var(--light-color);
}

.bc-smart-coach__feature svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* Navigation Controls */
.bc-smart-coach__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.bc-smart-coach__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--light-color);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-color);
  flex-shrink: 0;
}

.bc-smart-coach__nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.bc-smart-coach__nav-btn svg {
  width: 20px;
  height: 20px;
}
.bc-specials__pagination,
.bc-smart-coach__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-specials__pagination .swiper-pagination-bullet,
.bc-smart-coach__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgb(255, 255, 255);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  margin: 0 !important;
}

.bc-specials__pagination .swiper-pagination-bullet-active,
.bc-smart-coach__pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 32px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bc-smart-coach__inner {
    gap: 40px;
  }

  .bc-smart-coach__image-wrapper {
    flex: 0 0 420px;
  }

  .bc-smart-coach__section-title {
    font-size: 48px;
  }

  .bc-smart-coach__title {
    font-size: 40px;
  }

  .bc-smart-coach__feature {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .bc-smart-coach {
    padding: 40px 0;
  }

  .bc-smart-coach__inner {
    gap: 30px;
  }

  .bc-smart-coach__image-wrapper {
    flex: 0 0 380px;
  }

  .bc-smart-coach__section-title {
    font-size: 42px;
  }

  .bc-smart-coach__title {
    font-size: 36px;
  }

  .bc-smart-coach__features {
    gap: 14px 20px;
  }
}

@media (max-width: 991px) {
  .bc-smart-coach__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .bc-smart-coach__image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .bc-smart-coach__content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .bc-smart-coach {
    padding: 30px 0;
  }
  .bc-specials__swiper,
  .bc-smart-coach__swiper {
    margin-bottom: 40px;
  }

  .bc-smart-coach__section-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-smart-coach__title {
    font-size: 32px;
  }

  .bc-smart-coach__features-wrapper {
    margin-bottom: 32px;
  }

  .bc-smart-coach__features {
    gap: 12px;
  }

  .bc-smart-coach__feature {
    gap: 10px;
  }

  .bc-smart-coach__feature svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 575px) {
  .bc-smart-coach {
    padding: 24px 0;
  }
  .bc-smart-coach__subtitle,
  .bc-smart-coach__description {
    font-size: 14px;
  }

  .bc-smart-coach__section-title {
    font-size: 32px;
  }

  .bc-smart-coach__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .bc-smart-coach__features-wrapper {
    flex-direction: column;
  }
}

/* ============== Imprint Section ============== */
.bc-imprint {
  padding: 150px 0 120px;
  position: relative;
}

.bc-imprint__header {
  text-align: center;
  margin-bottom: 60px;
}

.bc-imprint__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.bc-imprint__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.bc-imprint__card {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.bc-imprint__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-imprint__card:hover {
  transform: translateY(-4px);
}

.bc-imprint__card-title {
  font: 700 20px/1.3 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.bc-imprint__card-text {
  font: 400 16px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.8);
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}

.bc-imprint__card-text:last-child {
  margin-bottom: 0;
}

.bc-imprint__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bc-imprint__link:hover {
  color: var(--light-color);
  text-decoration: underline;
}

.bc-imprint__footer {
  max-width: 800px;
}

.bc-imprint__footer-text {
  font: 400 16px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.8);
  margin: 0 0 20px 0;
}

.bc-imprint__footer-text:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-imprint {
    padding: 140px 0 70px;
  }

  .bc-imprint__title {
    font-size: 48px;
  }

  .bc-imprint__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .bc-imprint {
    padding: 130px 0 48px;
  }

  .bc-imprint__header {
    margin-bottom: 40px;
  }

  .bc-imprint__title {
    font-size: 36px;
  }

  .bc-imprint__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .bc-imprint__card {
    padding: 24px 20px;
  }

  .bc-imprint__card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bc-imprint__card-text {
    font-size: 14px;
  }

  .bc-imprint__footer-text {
    font-size: 14px;
  }
}

/* ============== Fairness in Trade Section ============== */
.bc-fairness {
  padding: 30px 0 120px;
  position: relative;
}

.bc-fairness__inner {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 24px 30px 36px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.bc-fairness__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-fairness__logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.bc-fairness__logo {
  width: 90px;
  height: 106px;
  z-index: 1;
}

.bc-fairness__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-fairness__content {
  position: relative;
  z-index: 1;
}

.bc-fairness__text {
  font: 400 16px/1.6 var(--global-font);
  color: #fcfcfd;
  margin: 0 0 0;
}

.bc-fairness__text:last-child {
  margin-bottom: 0;
}

.bc-fairness__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 4px;
}

.bc-fairness__link:hover {
  color: var(--light-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-fairness {
    padding: 30px 0 80px;
  }
}
@media (max-width: 767px) {
  .bc-fairness {
    padding: 24px 0 60px;
  }

  .bc-fairness__inner {
    padding: 40px 24px;
  }

  .bc-fairness__logo {
    width: 60px;
    height: 60px;
  }

  .bc-fairness__brand-text {
    font-size: 20px;
  }

  .bc-fairness__text {
    font-size: 14px;
  }
}

/* ============== Terms Section ============== */
.bc-terms {
  padding: 150px 0 120px;
  position: relative;
}

.bc-terms__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.bc-terms__content {
  flex: 1;
  min-width: 0;
}

.bc-terms__title {
  font: 700 68px/1.18 var(--primary-font);
  color: var(--light-color);
  margin: 0 auto 60px;
  text-align: center;
  max-width: 950px;
}

.bc-agreement .bc-terms__title {
  margin-bottom: 40px;
}

.bc-terms__sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bc-terms__section {
  scroll-margin-top: 120px;
}

.bc-terms__section-title {
  font: 700 32px/1.2 var(--primary-font);
  color: #fcfcfd;
  margin: 0 0 12px;
}
.bc-terms__section-content li p,
.bc-terms__section-content {
  font: 400 16px/1.6 var(--global-font);
  color: #fcfcfd;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bc-terms__section-content li p {
  margin-top: 8px;
}

.bc-terms__section-content h3 {
  font: 600 20px/1.6 var(--global-font);
  color: #fcfcfd;
  margin: 0;
}

.bc-terms__section-content a {
  color: var(--primary-color);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.bc-terms__section-content p {
  font: inherit;
  margin: 0;
}

.bc-terms__section-content ul {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-terms__section-content li {
  padding-left: 40px;
  font: 500 20px/1.2 var(--global-font);
  position: relative;
}

.bc-terms__section-content li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/check-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sticky Sidebar */
.bc-terms__sidebar {
  flex: 0 0 390px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.bc-terms__toc {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px 16px 30px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bc-terms__toc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-terms__toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--light-color);
}

.bc-terms__toc-title {
  font: 600 20px/1.3 var(--primary-font);
  color: var(--light-color);
  padding-right: 4px;
}

.bc-terms__toc-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bc-terms__toc-toggle[aria-expanded="false"] .bc-terms__toc-icon {
  transform: rotate(-90deg);
}

.bc-terms__toc-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 210px);
  opacity: 1;
  scroll-behavior: smooth;
  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(131, 199, 184, 0.3) transparent;
}

.bc-terms__toc-nav::-webkit-scrollbar {
  width: 6px;
}

.bc-terms__toc-nav::-webkit-scrollbar-track {
  background: transparent;
}

.bc-terms__toc-nav::-webkit-scrollbar-thumb {
  background-color: rgba(131, 199, 184, 0.3);
  border-radius: 3px;
}

.bc-terms__toc-nav::-webkit-scrollbar-thumb:hover {
  background-color: rgba(131, 199, 184, 0.5);
}

.bc-terms__toc[data-collapsed="true"] .bc-terms__toc-nav {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.bc-terms__toc[data-collapsed="false"] .bc-terms__toc-nav {
  max-height: calc(100vh - 210px);
  opacity: 1;
  margin-bottom: 0;
}

.bc-terms__toc-item {
  display: block;
  padding: 0 16px;
  font: 400 14px/1.5 var(--global-font);
  color: var(--light-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* .bc-terms__toc-item:hover {
  color: var(--light-color);
  background-color: rgba(255, 255, 255, 0.05);
} */

.bc-terms__toc-item--active {
  background: linear-gradient(
    90deg,
    rgba(131, 199, 184, 0.2) 0%,
    rgba(131, 199, 184, 0.1) 100%
  );
  padding: 16px;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-terms {
    padding: 150px 0 80px;
  }

  .bc-accessibility-statement {
    padding: 40px 0 80px;
  }

  .bc-terms__title {
    font-size: 56px;
    margin-bottom: 40px;
  }

  .bc-terms__sidebar {
    flex: 0 0 300px;
  }
}

@media (max-width: 991px) {
  .bc-terms {
    padding: 140px 0 60px;
  }

  /* .bc-terms__inner {
    flex-direction: column;
    gap: 40px;
  } */

  .bc-terms__toc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .bc-terms {
    padding: 130px 0 48px;
  }

  .bc-accessibility-statement {
    padding: 30px 0 60px;
  }

  .bc-terms__sidebar {
    flex: none;
    width: 100%;
    position: static;
    top: auto;
    display: none;
  }

  .bc-terms__title {
    font-size: 42px;
    margin-bottom: 32px;
  }

  .bc-terms__sections {
    gap: 32px;
  }

  .bc-terms__section-title {
    font-size: 26px;
  }

  .bc-terms__section-content li,
  .bc-terms__section-content h3 {
    font-size: 16px;
  }
  .bc-terms__section-content li p,
  .bc-terms__section-content {
    font-size: 14px;
  }
}

/* Agreement Cards */
.bc-agreement__cards {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.bc-agreement__card {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px 0 rgba(199, 211, 234, 0.15),
    0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bc-agreement__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
  opacity: 0.3;
}

.bc-agreement__card-label {
  font: 600 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
}

.bc-agreement__card-text {
  font: 400 18px/1.6 var(--global-font);
  color: rgba(252, 252, 253, 0.9);
  margin: 0 0 4px 0;
}

.bc-agreement__card-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .bc-agreement__cards {
    gap: 16px;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .bc-agreement__card {
    min-width: 100%;
  }

  .bc-agreement__card-label {
    font-size: 16px;
  }

  .bc-agreement__card-text {
    font-size: 14px;
  }
}

/* ************** */
