:root {
  --global-font: "Open Sans", sans-serif;
  --primary-font: "Outfit", sans-serif;
  --dark-color: #141416;
  --light-color: #fcfcfd;
  --gray-color: #f5f5f5;
  --primary-color: #83c7b8;
}

/* Animation Classes */
/* * Scroll Animation System
   *
   * Usage:
   * 1. Add base class: bc-animate
   * 2. Add animation type: bc-animate--slideInLeft, bc-animate--slideInRight, bc-animate--fadeInUp, bc-animate--fadeIn, bc-animate--scaleIn
   * 3. Optional delays: bc-animate--delay-100 through bc-animate--delay-800
   * 4. Optional duration: bc-animate--duration-fast, bc-animate--duration-slow
   *
   * Example: <div class="bc-animate bc-animate--fadeInUp bc-animate--delay-200">
   *
   * Animations trigger when elements enter the viewport (10% visible)
   * Uses Intersection Observer API for optimal performance
   */
.bc-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.bc-animate.bc-animate--visible {
  opacity: 1;
}

/* Slide In Left Animation */
.bc-animate--slideInLeft {
  transform: translateX(-100px);
}

.bc-animate--slideInLeft.bc-animate--visible {
  transform: translateX(0);
}

/* Slide In Right Animation */
.bc-animate--slideInRight {
  transform: translateX(100px);
}

.bc-animate--slideInRight.bc-animate--visible {
  transform: translateX(0);
}

/* Fade In Up Animation */
.bc-animate--fadeInUp {
  transform: translateY(50px);
}

.bc-animate--fadeInUp.bc-animate--visible {
  transform: translateY(0);
}

/* Fade In Animation */
.bc-animate--fadeIn {
  opacity: 0;
}

.bc-animate--fadeIn.bc-animate--visible {
  opacity: 1;
}

/* Scale In Animation */
.bc-animate--scaleIn {
  transform: scale(0.8) !important;
}

.bc-animate--scaleIn.bc-animate--visible {
  transform: scale(1) !important;
}

/* Animation Delays */
.bc-animate--delay-100 {
  transition-delay: 0.1s !important;
}

.bc-animate--delay-150 {
  transition-delay: 0.15s !important;
}

.bc-animate--delay-200 {
  transition-delay: 0.2s !important;
}

.bc-animate--delay-250 {
  transition-delay: 0.25s !important;
}

.bc-animate--delay-300 {
  transition-delay: 0.3s !important;
}

.bc-animate--delay-350 {
  transition-delay: 0.35s !important;
}

.bc-animate--delay-400 {
  transition-delay: 0.4s !important;
}

.bc-animate--delay-450 {
  transition-delay: 0.45s !important;
}

.bc-animate--delay-500 {
  transition-delay: 0.5s !important;
}

.bc-animate--delay-550 {
  transition-delay: 0.55s !important;
}

.bc-animate--delay-600 {
  transition-delay: 0.6s !important;
}

.bc-animate--delay-650 {
  transition-delay: 0.65s !important;
}

.bc-animate--delay-700 {
  transition-delay: 0.7s !important;
}

.bc-animate--delay-750 {
  transition-delay: 0.75s !important;
}

.bc-animate--delay-800 {
  transition-delay: 0.8s !important;
}

.bc-animate--delay-850 {
  transition-delay: 0.85s !important;
}

.bc-animate--delay-900 {
  transition-delay: 0.9s !important;
}

.bc-animate--delay-950 {
  transition-delay: 0.95s !important;
}

.bc-animate--delay-1000 {
  transition-delay: 1s !important;
}

.bc-animate--delay-1050 {
  transition-delay: 1.05s !important;
}

.bc-animate--delay-1100 {
  transition-delay: 1.1s !important;
}

.bc-animate--delay-1150 {
  transition-delay: 1.15s !important;
}

.bc-animate--delay-1200 {
  transition-delay: 1.2s !important;
}

/* Animation Duration Overrides */
.bc-animate--duration-fast {
  transition-duration: 0.4s;
}

.bc-animate--duration-slow {
  transition-duration: 1.2s;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .bc-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bc-animate--slideInLeft,
  .bc-animate--slideInRight,
  .bc-animate--fadeInUp,
  .bc-animate--scaleIn {
    transform: none;
  }
}

/* Mobile optimizations */
@media (max-width: 991px) {
  .bc-animate--slideInRight {
    transform: translateX(50px);
  }

  .bc-animate--slideInLeft {
    transform: translateX(-50px);
  }
}

@media (max-width: 767px) {
  .bc-animate--fadeInUp {
    transform: translateY(30px);
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #333333;
  padding: 0;
  margin: 0;
  font-family: var(--global-font);
}

body.mobile-menu-open {
  overflow: hidden;
}

figure {
  margin: 0;
}

i {
  line-height: 0;
  vertical-align: middle;
}

/* img {
  opacity: 0.02;
} */

img,
iframe {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bc-flex-ctr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-flex-ctr-spb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.bc-section-wrap {
  position: relative;
  z-index: 1;
}

.bc-section-wrap__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bc-section-wrap__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ************ */
/* ******  Main Styles  ******
/* ************ */
.bc-primary-button {
  display: inline-block;
  /* width: max-content; */
  font: 700 16px/1.25 var(--primary-font);
  color: var(--dark-color);
  background-color: var(--primary-color);
  padding: 16px 34px;
  letter-spacing: -0.2px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  max-width: 100%;
  cursor: pointer;
  text-transform: uppercase;
}

.bc-secondary-button {
  display: inline-block;
  padding: 16px 24px;
  background-color: transparent;
  border: 1px solid #777e90;
  border-radius: 10px;
  color: var(--light-color);
  text-decoration: none;
  font: 700 16px/1.23 var(--primary-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  max-width: 100%;
  text-align: center;
}

/* Staggered Text Animation Styles (COMMENTED OUT - use if needed) */
/*
.bc-button-text-wrapper {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.bc-button-text-main {
  position: relative;
}

.bc-button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.bc-button-text-char {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.bc-button-text-char-hover {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-primary-button:hover .bc-button-text-char,
.bc-secondary-button:hover .bc-button-text-char {
  transform: translateY(-200%);
}

.bc-primary-button:hover .bc-button-text-char-hover,
.bc-secondary-button:hover .bc-button-text-char-hover {
  transform: translateY(0);
  opacity: 1;
}

*/

/* Simple Button Hover Effect */
.bc-primary-button,
.bc-secondary-button {
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bc-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 199, 184, 0.2);
}

.bc-secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.bc-container {
  width: clamp(320px, 92%, 1250px);
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .bc-header__action-button {
    padding: 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .bc-header__action-button {
    padding: 12px 16px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .bc-container {
    width: 100%;
  }

  .bc-header__action-button {
    padding: 10px 8px;
    font-size: 14px;
  }
}

.bc-root {
  background-color: var(--dark-color);
  overflow: hidden;
}

.bc-root.bc-accessibility,
.bc-root.bc-privacy,
.bc-root.bc-agreement {
  overflow: initial;
}

.bc-root.bc-partner,
.bc-root.bc-professional {
  background-color: var(--light-color);
}

/* ************ */
/* ******  Header Styles  ******
/* ************ */
.bc-header {
  background-color: transparent;
  border-bottom: 1px solid rgba(170, 170, 170, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  /* }
.bc-entertainment .bc-header { */
  /* background-color: rgba(20, 20, 22, 0.1); */
  backdrop-filter: blur(40px);
}

.bc-partner .bc-header {
  background-color: var(--dark-color);
}

.bc-professional .bc-header {
  background-color: var(--dark-color);
  margin: 16px;
  border-radius: 16px;
  width: calc(100% - 32px);
}

.bc-header.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(170, 170, 170, 0.3);
}

.bc-header__inner {
  padding: 20px 0;
  gap: 44px;
}

.bc-professional .bc-header__inner {
  padding: 16px 0;
}

/* Logo Styles */
.bc-header__logo {
  display: inline-block;
  max-width: 200px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Navigation Styles */
.bc-header__nav {
  flex: 1;
  gap: 20px;
}

.bc-header__nav-list {
  gap: 20px;
  justify-content: flex-end;
}

.bc-header__nav-item {
  list-style: none;
}

.bc-header__nav-link {
  color: var(--light-color);
  text-decoration: none;
  font: 600 16px/1 var(--global-font);
  /* transition: color 0.3s ease; */
  position: relative;
}

.bc-header__nav-link:hover {
  color: var(--primary-color);
}

/* Header Actions */
.bc-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Contact Button */
/* .bc-header__action-button {
}

.bc-header__action-button:hover {
} */

/* Language Selector */
.bc-header__lang {
  position: relative;
}

.bc-header__lang-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 12px 0;
  /* border-radius: 6px; */
  transition: background-color 0.3s ease;
}

.bc-partner .bc-header__lang-button,
.bc-professional .bc-header__lang-button {
  padding: 15px 26px;
  border-radius: 10px;
  border: 1px solid #e6e8ec;
}

.bc-header__lang-button:hover {
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.bc-header__lang-button.active {
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.bc-header__lang-globe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-header__lang-name {
  font: 600 16px/1 var(--global-font);
  color: var(--light-color);
}

.bc-header__lang-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bc-header__lang-button.active .bc-header__lang-arrow {
  transform: rotate(180deg);
}

.bc-header__lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #424242;
  border-radius: 8px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bc-header__lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-header__lang-option {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font: 400 14px/1.2 var(--global-font);
  transition: background-color 0.3s ease;
}

.bc-header__lang-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-header__lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.bc-header__lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

/* Mobile Menu Button */
.bc-header__mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

.bc-header__mobile-menu-line {
  width: 20px;
  height: 2px;
  background-color: var(--light-color);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Mobile Menu Animation */
/* .bc-header__mobile-menu.active .bc-header__mobile-menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.bc-header__mobile-menu.active .bc-header__mobile-menu-line:nth-child(2) {
  opacity: 0;
}

.bc-header__mobile-menu.active .bc-header__mobile-menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
} */

/* Responsive Design */
@media (max-width: 1280px) {
  .bc-header__logo {
    max-width: 220px;
  }

  /* .bc-partner .bc-header__action-button,
  .bc-professional .bc-header__action-button  */
  .bc-landing .bc-header__nav,
  .bc-inner .bc-header__nav,
  .bc-entertainment .bc-header__nav {
    display: none;
  }

  .bc-landing .bc-header__mobile-menu,
  .bc-inner .bc-header__mobile-menu,
  .bc-entertainment .bc-header__mobile-menu {
    display: flex;
  }

  .bc-header__actions {
    gap: 16px;
  }

  .bc-landing .bc-header__lang,
  .bc-inner .bc-header__lang,
  .bc-entertainment .bc-header__lang {
    display: none;
  }

  /* .bc-partner .bc-header__lang,
  .bc-professional .bc-header__lang {
    display: block;
  } */
}

@media (max-width: 1024px) {
  .bc-header__nav-list {
    gap: 32px;
  }

  .bc-header__logo {
    max-width: 250px;
  }

  .bc-header__nav-link {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .bc-partner .bc-header__nav,
  .bc-professional .bc-header__nav,
  .bc-partner .bc-header__action-button,
  .bc-professional .bc-header__action-button {
    display: none;
  }

  .bc-partner .bc-header__mobile-menu,
  .bc-professional .bc-header__mobile-menu {
    display: flex;
  }

  .bc-landing .bc-header__lang,
  .bc-entertainment .bc-header__lang {
    display: none;
  }

  .bc-partner .bc-header__lang,
  .bc-professional .bc-header__lang {
    display: block;
  }
}

@media (max-width: 767px) {
  .bc-professional .bc-header {
    margin: 0;
    border-radius: 0;
    width: 100%;
  }

  .bc-header__logo {
    max-width: 200px;
  }

  .bc-header__inner {
    gap: 24px;
  }

  .bc-professional .bc-header__inner {
    padding: 20px 0;
  }

  .bc-header__actions {
    gap: 12px;
  }

  /* .bc-header__lang {
    padding: 6px 8px;
  } */

  .bc-partner .bc-header__lang-button,
  .bc-professional .bc-header__lang-button {
    padding: 8px 10px;
    border-radius: 8px;
  }

  .bc-header__lang-button {
    gap: 3px;
  }

  .bc-header__lang-name {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-header__logo {
    max-width: 188px;
  }

  .bc-header__inner {
    gap: 16px;
  }

  .bc-header__actions {
    gap: 8px;
  }

  .bc-header__mobile-menu {
    width: 28px;
    height: 28px;
  }

  .bc-header__mobile-menu-line {
    width: 18px;
    height: 1.5px;
  }
}

/* ************ */
/* ******  Offcanvas Mobile Menu Styles  ******
/* ************ */
.bc-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.bc-offcanvas.active {
  visibility: visible;
  opacity: 1;
}

.bc-offcanvas__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  transition: 0.3s;
}

.bc-offcanvas__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #1a1a1a;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bc-offcanvas.active .bc-offcanvas__content {
  transform: translateX(0);
}

.bc-offcanvas__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #333333;
  flex-shrink: 0;
}

.bc-offcanvas__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.bc-offcanvas__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-offcanvas__close svg {
  width: 24px;
  height: 24px;
}

.bc-offcanvas__nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.bc-offcanvas__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-offcanvas__nav-item {
  margin: 0;
}

.bc-offcanvas__nav-link {
  display: block;
  padding: 16px 24px;
  color: #ffffff;
  text-decoration: none;
  font: 400 18px/1.5 var(--global-font);
  transition: all 0.3s ease;
  border-left: 1px solid transparent;
}

.bc-offcanvas__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-left-color: #ffffff;
  color: #ffffff;
}

.bc-offcanvas__actions {
  padding: 24px;
  border-top: 1px solid #333333;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.bc-offcanvas__action-button {
  padding: 14px 24px;
  /*  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: #ffffff; */
  text-decoration: none;
  font-family: var(--global-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}

/* .bc-offcanvas__action-button:hover {
  background-color: var(--light-color);
  color: #1a1a1a;
} */

.bc-offcanvas__lang {
  position: relative;
}

.bc-partner .bc-offcanvas__lang,
.bc-professional .bc-offcanvas__lang {
  display: none;
}

.bc-offcanvas__lang-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  width: 100%;
  justify-content: flex-start;
}

.bc-offcanvas__lang-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-offcanvas__lang-button.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-offcanvas__lang-globe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-offcanvas__lang-name {
  font: 400 16px/1.2 var(--global-font);
}

.bc-offcanvas__lang-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.bc-offcanvas__lang-button.active .bc-offcanvas__lang-arrow {
  transform: rotate(180deg);
}

.bc-offcanvas__lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.bc-offcanvas__lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-offcanvas__lang-option {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font: 400 14px/1.2 var(--global-font);
  transition: background-color 0.3s ease;
}

.bc-offcanvas__lang-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bc-offcanvas__lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.bc-offcanvas__lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

/* Hide language selector in header when offcanvas is open */
.bc-offcanvas.active ~ .bc-header .bc-header__lang {
  display: none;
}

@media (max-width: 575px) {
  .bc-offcanvas__header {
    padding: 16px 20px;
  }

  .bc-offcanvas__nav-link {
    padding: 12px 20px;
    font-size: 16px;
  }

  .bc-offcanvas__close {
    height: 36px;
    width: 36px;
  }

  .bc-offcanvas__close svg {
    height: 20px;
    width: 20px;
  }
}

/* ************ */
/* ******  Hero Section Styles  ******
/* ************ */
.bc-hero {
  position: relative;
  z-index: 1;
  padding: 195px 0 210px;
}

.bc-entertainment .bc-hero {
  padding: 125px 0 110px;
}

.bc-professional .bc-hero {
  padding: 140px 0 100px;
}

.bc-entertainment .bc-hero__content {
  max-width: 450px;
}

.bc-home .bc-hero__content {
  max-width: 800px;
}

.bc-professional .bc-hero__content {
  max-width: 490px;
  width: 50%;
}

.bc-professional .bc-hero__thumb {
  flex: 1;
}

.bc-professional .bc-hero__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bc-entertainment .bc-hero__inner {
  gap: 50px;
}

.bc-entertainment .bc-hero__thumb {
  position: relative;
  z-index: 1;
}

.bc-entertainment .bc-hero__thumb img {
  width: 100%;
}

.bc-entertainment .bc-hero__thumb::before,
.bc-entertainment .bc-hero__thumb::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary-color);
  filter: blur(300px);
  z-index: -1;
  top: -265px;
  height: 456px;
  width: 456px;
}

.bc-entertainment .bc-hero__thumb::before {
  left: -110px;
  display: none;
}

.bc-entertainment .bc-hero__thumb::after {
  right: -110px;
}

.bc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.bc-partner .bc-hero__bg img {
  object-position: top center;
}

.bc-entertainment .bc-hero__bg-pattern {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

.bc-entertainment .bc-hero__bg-pattern img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*
.bc-hero__inner {
  position: relative;
  z-index: 1;
} */

.bc-hero__content {
  z-index: 2;
  position: relative;
  max-width: 650px;
}

.bc-hero__title {
  font: 700 68px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
  /* text-transform: uppercase; */
}

.bc-hero__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0 0 16px 0;
}

.bc-hero__subtitle {
  font: 600 20px/1.3 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 40px 0;
  text-transform: uppercase;
}

.bc-consulting .bc-hero__subtitle {
  text-transform: initial;
}

.bc-inner .bc-hero__subtitle {
  margin-bottom: 16px;
}

.bc-hero__list {
  margin-top: 30px;
  column-gap: 15px;
  flex-wrap: wrap;
}

.bc-hero__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font: 500 20px/1.3 var(--primary-font);
  color: var(--light-color);
}

.bc-hero__list-icon {
  width: 24px;
  height: 24px;
}

.bc-hero__list-text {
  flex: 1;
}

.bc-professional .bc-hero__title,
.bc-professional .bc-hero__subtitle,
.bc-professional .bc-hero__list-item,
.bc-professional .bc-hero__dsc {
  color: var(--dark-color);
}

.bc-professional .bc-hero__subtitle {
  margin: 0 0 8px;
}

.bc-hero__actions {
  margin-top: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

/* .bc-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font: 700 16px/1.2 var(--global-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  text-align: center;
} */

/* Responsive Design */
@media (max-width: 1200px) {
  .bc-hero {
    padding: 180px 0;
  }

  .bc-hero__title {
    font-size: 60px;
  }
}

@media (max-width: 1023px) {
  .bc-hero {
    padding: 180px 0 160px;
  }

  .bc-hero__title {
    font-size: 56px;
  }

  .bc-entertainment .bc-hero {
    padding: 125px 0 100px;
  }

  .bc-professional .bc-hero {
    padding: 140px 0 80px;
  }
}

@media (max-width: 991px) {
  .bc-hero {
    padding: 170px 0 120px;
  }

  .bc-entertainment .bc-hero {
    padding: 125px 0 90px;
  }

  .bc-professional .bc-hero {
    padding: 140px 0 60px;
  }

  .bc-hero__title {
    font-size: 50px;
  }
  .bc-hero__inner,
  .bc-professional .bc-hero__inner,
  .bc-entertainment .bc-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .bc-hero .bc-hero__inner .bc-hero__content,
  .bc-hero .bc-hero__inner .bc-hero__thumb,
  .bc-hero .bc-hero__content,
  .bc-hero .bc-hero__thumb {
    width: 100%;
    max-width: 100%;
  }

  .bc-professional .bc-hero__content,
  .bc-professional .bc-hero__thumb,
  .bc-entertainment .bc-hero__content,
  .bc-entertainment .bc-hero__thumb {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .bc-professional .bc-hero__actions,
  .bc-entertainment .bc-hero__actions {
    justify-content: center;
  }

  .bc-hero__subtitle {
    font-size: 18px;
    margin: 0 0 36px 0;
  }

  /*
.bc-hero__content {
  max-width: 650px;
}

  */
}

@media (max-width: 767px) {
  .bc-hero {
    padding: 160px 0 80px;
  }

  .bc-entertainment .bc-hero {
    padding: 125px 0 80px;
  }

  .bc-professional .bc-hero {
    padding: 140px 0 48px;
  }

  .bc-hero__title {
    font-size: 46px;
  }

  .bc-hero__list-item {
    font-size: 18px;
  }

  .bc-hero__subtitle {
    font-size: 16px;
    margin: 0 0 32px 0;
  }

  .bc-entertainment .bc-hero__thumb::before,
  .bc-entertainment .bc-hero__thumb::after {
    top: 0;
    height: 130px;
    width: 130px;
    filter: blur(100px);
  }

  .bc-entertainment .bc-hero__thumb::after {
    right: 0;
    transform: translate(50%, -50%);
  }

  .bc-entertainment .bc-hero__thumb::before {
    display: block;
    left: 0;
    transform: translate(-50%, -50%);
  }

  .bc-entertainment .bc-hero__dsc,
  .bc-inner .bc-hero__dsc {
    font-size: 14px;
  }

  .bc-hero__actions {
    margin-top: 32px;
  }
}

@media (max-width: 575px) {
  .bc-hero {
    padding: 148px 0 48px;
  }

  /* .bc-professional .bc-hero {
    padding: 140px 0 48px;
  } */

  .bc-hero__title {
    font-size: 42px;
  }

  .bc-landing .bc-hero__title {
    font-size: 40px;
  }

  .bc-inner .bc-hero__actions {
    justify-content: center;
  }
}

/* ********* */
/* ******  Split Content Styles  ******
/* ********* */
.bc-split-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.bc-build-team.bc-split-content {
  padding: 175px 0;
}

.bc-valuation.bc-split-content {
  padding: 60px 0;
}

.bc-project-support {
  padding: 180px 0 80px;
}

.bc-smart-coaches {
  padding: 110px 0 340px;
}

.bc-digital-marketiong,
.bc-app,
.bc-flexibility,
.bc-see-in-action,
.bc-company-plan.bc-split-content--03.bc-split-content,
.bc-virtual-coach.bc-split-content--03.bc-split-content,
.bc-simple_effective.bc-split-content--03.bc-split-content {
  padding: 120px 0;
}

.bc-master-with-smart-training {
  padding: 120px 0 96px;
}

.bc-your-coach-your-journey::after {
  position: absolute;
  content: "";
  height: 356px;
  aspect-ratio: 1/1;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  filter: blur(400px);
}

.bc-collection {
  z-index: 2;
}
.bc-collection::after {
  position: absolute;
  content: "";
  height: 356px;
  aspect-ratio: 1/1;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  filter: blur(400px);
}
.bc-flexibility::after {
  position: absolute;
  content: "";
  height: 356px;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  filter: blur(400px);
}

.bc-personal-coaching::after {
  position: absolute;
  content: "";
  height: 200px;
  aspect-ratio: 1/1;
  left: 0;
  top: 0;
  background: url(../images/dumbble-left.webp) left/contain no-repeat;
}

.bc-ai-partner::after {
  position: absolute;
  content: "";
  height: 200px;
  aspect-ratio: 1/1;
  right: 0;
  bottom: 0;
  background: url(../images/dumbble-right.webp) right/contain no-repeat;
}

.bc-split-content--01.bc-split-content {
  padding: 80px 0 40px;
}

.bc-split-content__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-split-content__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-gym-tv {
  padding: 60px 0;
}

.bc-gym-sound {
  padding: 100px 0;
}

.bc-personal-coaching {
  padding: 100px 0 50px;
}

.bc-ai-partner {
  padding: 50px 0 100px;
}

.bc-split-content--03.bc-split-content {
  padding: 60px 0 120px;
}

.bc-split-content--02.bc-split-content,
.bc-elevate-experience.bc-split-content,
.bc-your-coach-your-journey.bc-split-content,
.bc-collection.bc-split-content,
.bc-expert-support.bc-split-content,
.bc-boost-sells.bc-split-content {
  padding: 120px 0 60px;
}

.bc-security.bc-split-content {
  padding: 100px 0 50px;
}

.bc-split-content--04.bc-split-content {
  padding: 120px 0 60px;
}

.bc-split-content--02::before,
.bc-split-content--02::after {
  position: absolute;
  content: "";
  top: -60px;
  left: 0;
  z-index: -1;
  width: 356px;
  aspect-ratio: 1/1;
  max-width: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  filter: blur(400px);
}

.bc-split-content--02::after {
  left: auto;
  top: auto;
  text-align: left;
  right: 65px;
  bottom: 100px;
}

.bc-landing .bc-split-content--01 .bc-split-content__inner {
  gap: 35px;
}
.bc-split-content__inner {
  display: flex;
  align-items: center;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.bc-align-top {
  align-items: flex-start;
}

.bc-valuation .bc-split-content__bg-img {
  position: absolute;
  top: 0;
  left: -90px;
  width: 550px;
  height: 262px;
  z-index: -1;
}

.bc-valuation .bc-split-content__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-gym-sound .bc-split-content__inner {
  align-items: flex-end;
}

.bc-coach .bc-split-content__inner,
.bc-promise .bc-split-content__inner,
.bc-ai-partner .bc-split-content__inner,
.bc-digital-marketiong .bc-split-content__inner {
  flex-direction: row-reverse;
}

.bc-split-content__bubble {
  position: absolute;
  top: -40px;
  right: -105px;
  height: 260px;
  width: 260px;
  border-radius: 50%;
  background: linear-gradient(
    rgba(131, 199, 184, 0.04) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  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: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: -1;
}

.bc-split-content__bubble-title {
  font: 600 18px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 8px;
}

.bc-split-content__bubble-text {
  font: 400 14px/1.2 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-split-content--02 .bc-split-content__inner {
  gap: 105px;
}

.bc-split-content__thumb {
  flex: 1;
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.bc-gym-tv .bc-split-content__thumb {
  margin-bottom: -150px;
}

.bc-gym-tv .bc-split-content__content {
  z-index: 9;
}

.bc-gym-sound .bc-split-content__thumb {
  margin-bottom: -100px;
  max-width: 560px;
  z-index: 9;
  /* display: flex;
  align-items: flex-end; */
}

.bc-split-content--02 .bc-split-content__thumb {
  max-width: 500px;
}

.bc-split-content--03 .bc-split-content__inner {
  flex-direction: row-reverse;
  gap: 130px;
}

.bc-coach.bc-split-content--03 .bc-split-content__inner {
  gap: 50px;
}

.bc-split-content--04 .bc-split-content__inner {
  gap: 130px;
}

.bc-split-content--03 .bc-split-content__content {
  /* max-width: 800px; */
  margin: 0 auto;
}

.bc-elevate-experience .bc-split-content__thumb,
.bc-split-content--03 .bc-split-content__thumb {
  position: relative;
  max-width: 495px;
}

.bc-split-content--01 .bc-split-content__thumb {
  margin-left: -110px;
  position: relative;
  z-index: 1;
  max-width: calc(50% + 110px);
}

.bc-split-content--01 .bc-split-content__thumb::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 280px;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  filter: blur(250px);
}

.bc-split-content__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-split-content__content {
  flex: 1;
  max-width: 50%;
}

.bc-split-content__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-split-content__subtitle {
  font: 500 20px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
}

.bc-professional .bc-split-content__subtitle {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.bc-entertainment .bc-split-content__subtitle {
  max-width: 420px;
}

.bc-thin-text {
  font-weight: 300;
}

.bc-split-content__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0 0 16px 0;
}

.bc-split-content__link {
  font: 400 16px/1.6 var(--global-font);
  color: var(--primary-color);
  text-decoration: underline;
}

.bc-split-content__dsc:last-of-type {
  margin-bottom: 30px;
}

.bc-split-content__dsc strong {
  font-weight: 700;
}

.bc-split-content__list-wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* .bc-split-content__list-wrap{

} */

.bc-split-content__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .bc-split-content .bc-split-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 50px;
} */

.bc-split-content__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.bc-split-content__list-item:last-child {
  margin-bottom: 0;
}

.bc-split-content__list-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* .bc-split-content__list-icon svg {
  width: 16px;
  height: 16px;
  color: var(--light-color);
} */

.bc-split-content__list-text {
  flex: 1;
  font: 500 20px/1.4 var(--primary-font);
  color: var(--gray-color);
}

.bc-professional section:not(.bc-promise) .bc-split-content__title,
.bc-professional section:not(.bc-promise) .bc-split-content__subtitle,
.bc-professional section:not(.bc-promise) .bc-split-content__dsc,
.bc-professional section:not(.bc-promise) .bc-split-content__list-text {
  color: var(--dark-color);
}

.bc-split-content__actions {
  margin-top: 40px;
}

.bc-split-content__button {
  display: inline-block;
}

.bc-split-content__thumb-title {
  font: 600 32px/1.3 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  white-space: nowrap;
  background: linear-gradient(
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bc-split-content__annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bc-split-content__annotation {
  position: absolute;
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 16px 24px;
  border-radius: 100px;
  font: 600 16px/1.5 var(--primary-font);
  text-align: center;
  margin: 0;
}

.bc-split-content__annotation--left {
  top: 35%;
  left: -90px;
  width: 215px;
}

.bc-split-content__annotation--top {
  top: 44px;
  right: -95px;
  width: 280px;
}

.bc-split-content__annotation--bottom {
  bottom: -42px;
  right: -72px;
  width: 240px;
}

.bc-split-content__playlist {
  margin-top: 40px;
}

.bc-split-content__playlist-title {
  font: 500 26px/1.2 var(--primary-font);
  color: var(--primary-color);
  margin: 0 0 24px 0;
}

.bc-split-content__playlist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: max-content;
}

.bc-split-content__playlist-item {
  padding: 0 12px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-right: 1px solid #83c7b846;
}

.bc-split-content__playlist-item:nth-child(3n),
.bc-split-content__playlist-item:last-child {
  border-right: none;
}

.bc-split-content__playlist-content {
  flex: 1;
}

.bc-split-content__playlist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bc-split-content__playlist-icon::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(
    -32.64deg,
    rgba(255, 255, 255, 1) 0.07%,
    rgba(255, 255, 255, 0) 30.46%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bc-split-content__playlist-time {
  font: 600 20px/1.2 var(--primary-font);
  color: var(--light-color);
  display: block;
  margin: 0 0 5px;
}

.bc-split-content__playlist-text {
  font: 400 14px/1.4 var(--global-font);
  color: var(--gray-color);
  display: block;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1500px) {
  .bc-split-content__annotation {
    padding: 12px 16px;
  }

  .bc-split-content__annotation--bottom {
    right: -20px;
  }

  .bc-split-content--04 .bc-split-content__inner {
    gap: 90px;
  }

  .bc-split-content__annotation--top {
    right: -35px;
  }

  .bc-split-content__annotation--left {
    left: -50px;
  }

  .bc-split-content__bubble {
    height: 180px;
    width: 180px;
    right: -50px;
  }

  .bc-split-content__bubble-title {
    font-size: 16px;
  }

  .bc-split-content__bubble-text {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .bc-split-content__playlist-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-split-content__playlist-item:nth-child(3n) {
    border-right: 1px solid #83c7b846;
  }

  .bc-split-content__playlist-item:nth-child(2n) {
    border-right: none;
  }

  .bc-split-content__bubble {
    top: -80px;
    /* right: -50px; */
  }

  .bc-split-content__list-wrap {
    gap: 30px;
  }

  .bc-split-content__list-wrap .bc-split-content__list-text {
    font-size: 15px;
  }
}

@media (max-width: 1023px) {
  .bc-split-content--04.bc-split-content {
    padding: 80px 0 60px;
  }

  .bc-smart-coaches {
    padding: 80px 0 250px;
  }

  .bc-valuation.bc-split-content {
    padding: 40px 0;
  }

  .bc-virtual-coach.bc-split-content--03.bc-split-content,
  .bc-company-plan.bc-split-content--03.bc-split-content,
  .bc-simple_effective.bc-split-content--03.bc-split-content {
    padding: 80px 0;
  }

  .bc-build-team.bc-split-content {
    padding: 120px 0;
  }

  .bc-personal-coaching,
  .bc-split-content--02.bc-split-content,
  .bc-elevate-experience.bc-split-content,
  .bc-your-coach-your-journey.bc-split-content,
  .bc-collection.bc-split-content,
  .bc-expert-support.bc-split-content,
  .bc-boost-sells.bc-split-content,
  .bc-security.bc-split-content {
    padding: 80px 0 40px;
  }
  .bc-ai-partner {
    padding: 40px 0 80px;
  }

  .bc-split-content--03.bc-split-content {
    padding: 60px 0 80px;
  }

  .bc-split-content--04 .bc-split-content__inner {
    gap: 70px;
  }

  .bc-split-content__thumb-title {
    font-size: 28px;
    top: -36px;
  }
}

@media (max-width: 991px) {
  .bc-split-content--01 .bc-split-content__inner {
    gap: 20px;
  }

  .bc-valuation.bc-split-content {
    padding: 30px 0;
  }

  .bc-split-content--04 .bc-split-content__inner {
    gap: 50px;
  }

  .bc-split-content--03.bc-split-content {
    padding: 60px 0 60px;
  }

  .bc-build-team.bc-split-content {
    padding: 80px 0;
  }

  .bc-company-plan.bc-split-content--03.bc-split-content,
  .bc-virtual-coach.bc-split-content--03.bc-split-content,
  .bc-simple_effective.bc-split-content--03.bc-split-content {
    padding: 60px 0;
  }

  .bc-split-content--04.bc-split-content {
    padding: 60px 0;
  }

  .bc-personal-coaching,
  .bc-split-content--02.bc-split-content,
  .bc-elevate-experience.bc-split-content,
  .bc-your-coach-your-journey.bc-split-content,
  .bc-collection.bc-split-content,
  .bc-boost-sells.bc-split-content,
  .bc-expert-support.bc-split-content,
  .bc-security.bc-split-content {
    padding: 60px 0 30px;
  }
  .bc-ai-partner {
    padding: 30px 0 60px;
  }

  .bc-gym-sound .bc-split-content__thumb {
    margin-bottom: -60px;
    width: 100%;
    /* max-width: 100%; */
  }

  .bc-gym-tv .bc-split-content__inner {
    gap: 32px;
  }

  .bc-gym-tv .bc-split-content__thumb {
    margin-bottom: -100px;
    width: 100%;
    max-width: 600px;
  }

  .bc-split-content__bubble {
    top: 0;
  }

  .bc-gym-sound .bc-split-content__inner {
    align-items: center;
  }

  .bc-split-content__dsc:last-of-type {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .bc-split-content--03.bc-split-content {
    padding: 48px 0;
  }

  .bc-smart-coaches {
    padding: 48px 0 160px;
  }

  .bc-valuation.bc-split-content {
    padding: 24px 0;
  }

  .bc-personal-coaching,
  .bc-split-content--02.bc-split-content,
  .bc-elevate-experience.bc-split-content,
  .bc-your-coach-your-journey.bc-split-content,
  .bc-collection.bc-split-content,
  .bc-boost-sells.bc-split-content,
  .bc-expert-support.bc-split-content,
  .bc-security.bc-split-content {
    padding: 48px 0 24px;
  }

  .bc-company-plan.bc-split-content--03.bc-split-content,
  .bc-virtual-coach.bc-split-content--03.bc-split-content,
  .bc-simple_effective.bc-split-content--03.bc-split-content {
    padding: 48px 0;
  }

  .bc-build-team.bc-split-content {
    padding: 60px 0;
  }

  .bc-ai-partner {
    padding: 24px 0 48px;
  }

  .bc-split-content__inner {
    gap: 40px;
  }

  .bc-split-content--04 .bc-split-content__inner {
    gap: 32px;
  }

  .bc-split-content--04.bc-split-content {
    padding: 48px 0;
  }

  .bc-split-content--02 .bc-split-content__inner {
    gap: 70px;
  }

  .bc-gym-sound .bc-split-content__thumb {
    margin-bottom: -50px;
  }

  .bc-split-content__playlist-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .bc-split-content__subtitle {
    font-size: 18px;
  }

  .bc-split-content__playlist-icon {
    height: 40px;
    width: 40px;
  }

  .bc-split-content__playlist-time {
    font-size: 16px;
  }

  .bc-split-content__actions {
    margin-top: 32px;
  }

  .bc-split-content__thumb-title {
    font-size: 26px;
    top: -30px;
  }

  .bc-split-content__annotation--bottom {
    width: 160px;
    right: -12px;
    padding: 12px;
    bottom: -33px;
  }

  .bc-split-content__annotation--top {
    width: 190px;
    padding: 12px;
    right: -12px;
    top: 28px;
  }

  .bc-split-content__annotation--left {
    width: 160px;
    padding: 12px;
    left: -12px;
    top: 128px;
  }

  .bc-split-content__bubble {
    height: 155px;
    width: 155px;
    right: -20px;
    top: 0;
  }

  .bc-split-content__bubble-title {
    font-size: 12px;
  }

  .bc-split-content__bubble-text {
    font-size: 8px;
  }

  .bc-ai-partner .bc-split-content__dsc:last-child,
  .bc-gym-tv .bc-split-content__dsc:last-of-type {
    margin-bottom: 0;
  }

  /* .bc-split-content__thumb img {
    object-position: right;
  } */
}

@media (max-width: 575px) {
  .bc-split-content__bubble {
    top: -30px;
    right: 0;
  }

  .bc-gym-tv .bc-split-content__thumb {
    margin-bottom: -50px;
  }

  .bc-split-content__subtitle {
    font-size: 16px;
  }

  .bc-inner .bc-split-content__actions,
  .bc-security .bc-split-content__actions {
    text-align: center;
  }

  .bc-split-content__list-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 450px) {
  .bc-split-content__playlist-list {
    display: flex;
    justify-content: space-between;
    gap: 20px 0;
    flex-wrap: wrap;
    width: 100%;
  }

  .bc-split-content__playlist-item {
    width: 50%;
    flex: 1;
  }

  .bc-split-content__playlist-text {
    white-space: wrap;
    min-width: 100px;
  }

  .bc-split-content__playlist-item,
  .bc-split-content__playlist-item:nth-child(3n) {
    border-right: none;
  }
}

.bc-split-content--04 .bc-split-content__thumb {
  max-width: 500px;
}

@media (max-width: 1280px) {
  .bc-split-content--03 .bc-split-content__inner {
    gap: 40px;
  }

  .bc-personal-coaching .bc-split-content__title {
    font-size: 44px;
  }
}

@media (max-width: 1023px) {
  .bc-split-content {
    padding: 70px 0;
  }

  .bc-split-content__title {
    font-size: 48px;
  }

  .bc-split-content__annotation {
    font-size: 14px;
  }

  .bc-software .bc-split-content .bc-split-content__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }

  /* .bc-software .bc-split-content__thumb, */
  .bc-software .bc-split-content .bc-split-content__content {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .bc-split-content {
    padding: 60px 0;
  }

  .bc-split-content__inner,
  .bc-split-content--03 .bc-split-content__inner,
  .bc-digital-marketiong .bc-split-content__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .bc-your-coach-your-journey .bc-split-content__inner,
  .bc-app .bc-split-content__inner {
    flex-direction: column-reverse;
  }

  .bc-split-content--01 .bc-split-content__inner,
  .bc-coach .bc-split-content__inner,
  .bc-promise .bc-split-content__inner,
  .bc-ai-partner .bc-split-content__inner,
  .bc-personal-coaching .bc-split-content__inner {
    flex-direction: column-reverse;
  }

  .bc-split-content__thumb,
  .bc-split-content__content {
    max-width: 100%;
  }

  .bc-app .bc-split-content__thumb {
    max-width: 500px;
  }

  .bc-split-content--01 .bc-split-content__thumb {
    max-width: 100%;
    margin: 0;
  }

  .bc-personal-coaching .bc-split-content__title,
  .bc-split-content__title {
    font-size: 42px;
  }

  .bc-split-content--03 .bc-split-content__chart {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .bc-split-content--04 .bc-split-content__inner {
    flex-direction: column;
  }

  .bc-split-content--04 .bc-split-content__content {
    padding-left: 0;
  }

  /* .bc-split-content--04 .bc-split-content__thumb {
    max-width: 100%;
  } */

  .bc-split-content--04 .bc-split-content__inner {
    flex-direction: column;
  }

  .bc-split-content--04 .bc-split-content__thumb {
    /* max-width: 100%; */
    width: 100%;
  }

  .bc-split-content__link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
  }

  .bc-split-content__link:hover {
    color: var(--light-color);
  }

  /*

.bc-split-content--01 .bc-split-content__thumb {
  margin-left: -110px;
  max-width: calc(50% + 110px);
}

.bc-split-content--01 .bc-split-content__thumb::before {
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  height: 445px;
  width: 445px;
  filter: blur(600px);
}

 */
}

@media (max-width: 767px) {
  .bc-split-content {
    padding: 50px 0;
  }

  .bc-personal-coaching .bc-split-content__title,
  .bc-split-content__title {
    font-size: 36px;
  }

  .bc-split-content__list-text {
    font-size: 16px;
  }

  .bc-split-content__annotation {
    font-size: 12px;
  }

  .bc-landing .bc-split-content--03 .bc-split-content__inner {
    gap: 32px;
  }
}

@media (max-width: 575px) {
  .bc-split-content {
    padding: 48px 0;
  }

  .bc-personal-coaching .bc-split-content__title,
  .bc-split-content__title {
    font-size: 32px;
  }
  .bc-split-content__dsc,
  .bc-landing .bc-split-content__dsc,
  .bc-entertainment .bc-split-content__dsc {
    font-size: 14px;
  }

  .bc-split-content__list-item {
    gap: 8px;
  }

  .bc-split-content__list-icon {
    width: 20px;
    height: 20px;
  }
}

/* ********* */
/* ******  Visual Measurment Slider ******
/* ********* */
.bc-visual-measurment {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 0 60px;
}

.bc-professional .bc-visual-measurment {
  padding: 0;
}

.bc-visual-measurment .bc-container {
  position: relative;
}

.bc-visual-measurment .bc-visual-measurment__pagination {
  position: absolute !important;
  left: 15px !important;
  bottom: 130px !important;
  width: max-content !important;
}

.bc-professional .bc-header .bc-container {
  width: 100%;
}

/* Fixed Title Section */
.bc-visual-measurment__header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}

.bc-visual-measurment__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-visual-measurment__subtitle {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bc-visual-measurment__subtitle strong {
  font-weight: 700;
}

/* Slider Wrapper */
.bc-visual-measurment__wrapper {
  position: relative;
}

.bc-visual-measurment__swiper {
  width: 100%;
  overflow: hidden;
}

.bc-visual-measurment .swiper-wrapper {
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Slide Styles */
.bc-visual-measurment__slide {
  position: relative;
  overflow: hidden;
}

.bc-visual-measurment__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  z-index: 1;
}

.bc-visual-measurment__slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-visual-measurment__slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 22, 0.8);
  pointer-events: none;
}

/* Slide Inner Content */
.bc-visual-measurment__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 110px 0;
}

/* Content Side (Left) */
.bc-visual-measurment__content {
  flex: 1;
  max-width: 500px;
}

.bc-visual-measurment__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bc-visual-measurment__icon svg {
  width: 100%;
  height: 100%;
}

.bc-visual-measurment__slide-title {
  font: 600 42px/1.2 var(--primary-font);
  color: var(--primary-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-visual-measurment__slide-dsc {
  font: 400 14px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0;
  max-width: 250px;
}

.bc-landing .bc-visual-measurment__slide-dsc {
  max-width: 420px;
}

.bc-professional .bc-visual-measurment__slide-dsc {
  max-width: 520px;
}

/* Image Side (Right) */
.bc-visual-measurment__image {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.bc-visual-measurment__image img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/* Pagination Styles */
.bc-visual-measurment__pagination {
  position: absolute;
  bottom: 40px;
  left: 15px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bc-visual-measurment__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--gray-color);
  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-visual-measurment__pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 32px;
}

/* Swiper Fade Effect */
.bc-visual-measurment__swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-visual-measurment__swiper .swiper-slide-active {
  opacity: 1;
}

.bc-visual-measurment__swiper .swiper-slide-prev,
.bc-visual-measurment__swiper .swiper-slide-next {
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bc-visual-measurment .bc-visual-measurment__pagination {
    bottom: 80px !important;
  }
}

@media (max-width: 1023px) {
  .bc-visual-measurment {
    padding: 30px 0 40px;
  }

  .bc-visual-measurment__header {
    margin-bottom: 30px;
  }

  .bc-visual-measurment__title {
    font-size: 48px;
  }

  .bc-visual-measurment__inner {
    gap: 60px;
    padding: 90px 0;
  }

  .bc-visual-measurment__slide-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .bc-visual-measurment__title {
    font-size: 42px;
  }

  .bc-visual-measurment__subtitle {
    font-size: 15px;
  }

  .bc-visual-measurment__inner {
    gap: 40px;
    padding: 70px 0 80px;
  }

  .bc-visual-measurment__icon {
    margin: 0 0 24px 0;
  }

  .bc-visual-measurment__slide-title {
    font-size: 38px;
  }

  .bc-visual-measurment__slide-dsc {
    font-size: 16px;
  }

  .bc-visual-measurment .bc-visual-measurment__pagination {
    bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .bc-visual-measurment {
    padding: 20px 0 30px;
  }

  .bc-visual-measurment__header .bc-container {
    margin-bottom: 24px;
  }

  .bc-visual-measurment__title {
    font-size: 36px;
  }

  .bc-visual-measurment__swiper .swiper-slide {
    /* display: block; */
  }

  .bc-visual-measurment__inner {
    gap: 30px;
    padding: 60px 0 80px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .bc-visual-measurment__content,
  .bc-visual-measurment__image {
    width: 100%;
    max-width: 100%;
  }

  .bc-visual-measurment__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .bc-visual-measurment__slide-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .bc-visual-measurment__slide-dsc {
    font-size: 15px;
  }

  .bc-visual-measurment__image {
    height: 250px;
    overflow: visible;
  }

  /* .bc-visual-measurment .bc-visual-measurment__pagination {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
  } */

  .bc-visual-measurment .bc-visual-measurment__pagination {
    /* position: relative !important; */
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 20px !important;
    width: 100% !important;
  }

  .bc-visual-measurment__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .bc-visual-measurment__pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 6px;
  }
}

@media (max-width: 575px) {
  .bc-visual-measurment {
    padding: 16px 0 24px;
  }

  /* .bc-visual-measurment__header .bc-container {
    text-align: left;
  } */

  .bc-visual-measurment__title {
    font-size: 32px;
  }

  .bc-visual-measurment__subtitle {
    font-size: 14px;
  }

  .bc-visual-measurment__inner {
    gap: 28px;
    padding: 50px 0 80px;
  }

  .bc-visual-measurment__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    margin-left: 0;
  }

  .bc-visual-measurment__slide-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .bc-professional .bc-visual-measurment__slide-title {
    font-size: 26px;
  }

  .bc-visual-measurment__slide-dsc {
    font-size: 14px;
  }

  .bc-visual-measurment__image {
    height: 200px;
    overflow: visible;
  }

  .bc-visual-measurment__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .bc-visual-measurment__pagination .swiper-pagination-bullet-active {
    width: 28px;
    height: 6px;
  }
}

/* ********* */
/* ******  Outcomes Section Styles  ******
/* ********* */
.bc-outcomes {
  padding: 120px 0;
  background: linear-gradient(
    rgba(131, 199, 184, 0.2) 0%,
    rgba(131, 199, 184, 0.04) 100%
  );
  position: relative;
  z-index: 1;
}

.bc-outcomes::after {
  position: absolute;
  content: "";
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 356px;
  width: 356px;
  filter: blur(500px);
}

.bc-outcomes__inner {
}

.bc-outcomes__header {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 40px;
}

.bc-outcomes__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-outcomes__subtitle {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0;
}

.bc-outcomes__cards {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.bc-outcomes__card {
  flex: 1;
  max-width: 50%;
  background-color: #3f4b48;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bc-outcomes__card-image {
  width: 100%;
  aspect-ratio: 2.14/1;
  overflow: hidden;
  transition: 0.5s;
}

.bc-outcomes__card:hover .bc-outcomes__card-image {
  transform: scale(1.02);
}

.bc-outcomes__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-outcomes__card-content {
  flex: 1;
  padding: 20px;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
}

.bc-outcomes__card-title {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 8px 0;
}

.bc-outcomes__card-dsc {
  font: 400 14px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-outcomes__result {
  background-color: #3f4b48;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
}

.bc-outcomes__result-title {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 24px 0;
}

.bc-outcomes__result-dsc {
  font: 100 16px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 24px 0;
}

.bc-outcomes__result-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-outcomes__result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 20px/1.4 var(--primary-font);
  color: var(--light-color);
}

.bc-outcomes__result-item svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-outcomes {
    padding: 70px 0;
  }

  .bc-outcomes__header {
    margin-bottom: 32px;
  }

  .bc-outcomes__title {
    font-size: 48px;
  }

  .bc-outcomes__result {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .bc-outcomes {
    padding: 60px 0;
  }

  .bc-outcomes__title {
    font-size: 42px;
  }

  .bc-outcomes__subtitle {
    font-size: 15px;
  }

  .bc-outcomes__cards {
    gap: 20px;
    margin-bottom: 20px;
  }

  .bc-outcomes__card-title {
    font-size: 22px;
  }

  .bc-outcomes__result-title {
    font-size: 24px;
  }

  .bc-outcomes__result-dsc {
    font-size: 14px;
  }

  .bc-outcomes__result-list {
    gap: 32px;
  }

  .bc-outcomes__result-item {
    font-size: 18px;
  }

  .bc-outcomes__result {
    padding: 24px 16px;
  }
}

@media (max-width: 767px) {
  .bc-outcomes {
    padding: 50px 0;
  }

  .bc-outcomes__header {
    margin-bottom: 24px;
  }

  .bc-outcomes__title {
    font-size: 36px;
  }

  .bc-outcomes__subtitle {
    font-size: 14px;
  }

  .bc-outcomes__cards {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .bc-outcomes__card {
    max-width: 100%;
  }

  .bc-outcomes__card-title {
    font-size: 20px;
  }

  .bc-outcomes__result {
    padding: 24px;
  }

  .bc-outcomes__result-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .bc-outcomes__result-list {
    gap: 20px;
    align-items: center;
  }

  .bc-outcomes__result-item {
    font-size: 16px;
    justify-content: center;
  }

  .bc-outcomes__result {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .bc-outcomes__header {
    margin-bottom: 32px;
  }

  .bc-outcomes__title {
    font-size: 32px;
  }

  .bc-outcomes__subtitle {
    font-size: 14px;
  }

  /* .bc-outcomes__cards {
    gap: 20px;
    margin-bottom: 24px;
  } */

  .bc-outcomes__card-content {
    padding: 16px;
  }

  .bc-outcomes__result {
    padding: 20px;
  }

  .bc-outcomes__result-title {
    font-size: 20px;
  }

  .bc-outcomes__result-list {
    gap: 16px;
  }

  .bc-outcomes__result-item {
    font-size: 14px;
    gap: 8px;
  }

  .bc-outcomes__result-item svg {
    width: 20px;
    height: 20px;
  }
}

/* ********* */
/* ******  Pricing  ******
/* ********* */
.bc-pricing {
  padding: 60px 0 120px;
  background-color: var(--dark-color);
}

.bc-pricing__inner {
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
}

.bc-pricing__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 40px 0;
  letter-spacing: -0.2px;
}

.bc-pricing__content {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.bc-pricing__box {
  flex: 1;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  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 3px 60px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

.bc-roi-box {
  background: linear-gradient(
      rgba(131, 199, 184, 0.04) 0%,
      rgba(131, 199, 184, 0.4) 100%
    ),
    linear-gradient(rgba(131, 199, 184, 0.04) 0%, rgba(131, 199, 184, 0.4) 100%),
    linear-gradient(rgba(131, 199, 184, 0.04) 0%, rgba(131, 199, 184, 0.4) 100%);
}

.bc-pricing__box-title {
  font: 700 20px/1.18 var(--primary-font);
  color: var(--light-color);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 24px 0;
}

.bc-roi-box .bc-pricing__box-title {
  padding: 0;
  margin: 0 0 8px;
  border: none;
}

.bc-pricing__box-subtitle {
  font: 400 16px/1.2 var(--global-font);
  color: var(--light-color);
  margin: 0 0 12px 0;
}

.bc-roi-box .bc-pricing__box-subtitle {
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 24px 0;
}

.bc-pricing__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bc-pricing__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  /* background-color: #3b5c53; */
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(131, 199, 184, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bc-pricing__option--selected {
  border-color: var(--primary-color);
}

.bc-pricing__option:hover {
  border-color: rgba(131, 199, 184, 0.5);
}

/* .bc-pricing__option.clicked {
  transform: scale(0.99);
} */

.bc-pricing__option-radio {
  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;
}

.bc-pricing__option--selected .bc-pricing__option-radio {
  border-color: var(--primary-color);
  /* background-color: var(--primary-color); */
}

.bc-pricing__option-radio-inner {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bc-pricing__option--selected .bc-pricing__option-radio-inner {
  opacity: 1;
}

.bc-pricing__option-content {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.bc-pricing__option-price {
  font: 700 26px/1.2 var(--primary-font);
  color: var(--primary-color);
}

.bc-pricing__option-period {
  font: 400 16px/1.2 var(--global-font);
  color: var(--light-color);
  opacity: 0.5;
}

.bc-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bc-pricing__feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-pricing__feature-icon svg {
  color: var(--light-color);
}

.bc-pricing__feature-text {
  font: 400 14px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-pricing__feature-text strong {
  font-weight: 700;
}

.bc-pricing__box-dsc {
  font: 400 14px/1.4 var(--global-font);
  color: var(--light-color);
  margin: 0 0 40px 0;
}

.bc-pricing__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-pricing__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.bc-pricing__benefit:last-child {
  margin-bottom: 0;
}

.bc-pricing__benefit-icon {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-pricing__benefit-icon svg {
  color: var(--light-color);
}

.bc-pricing__benefit-text {
  font: 400 18px/1.4 var(--primary-font);
  color: var(--light-color);
}

/* .bc-pricing__actions {
  text-align: center;
}

.bc-pricing__button {
  display: inline-block;
} */

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-pricing {
    padding: 60px 0 80px;
  }

  .bc-pricing__title {
    font-size: 48px;
    margin-bottom: 50px;
  }

  .bc-pricing__content {
    gap: 24px;
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .bc-pricing__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-pricing {
    padding: 30px 0 50px;
  }

  .bc-pricing__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .bc-pricing__content {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .bc-pricing__box {
    padding: 16px;
  }

  /*  .bc-pricing__box-subtitle {
    font-size: 15px;
  }

  .bc-pricing__option-price {
    font-size: 16px;
  }

  .bc-pricing__option-period {
    font-size: 14px;
  }

  .bc-pricing__feature-text,
  .bc-pricing__box-dsc,
  .bc-pricing__benefit-text {
    font-size: 14px;
  } */
}

@media (max-width: 575px) {
  .bc-pricing__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .bc-pricing__content {
    gap: 16px;
  }

  .bc-pricing__box {
    padding: 20px;
  }

  /* .bc-pricing__box-subtitle {
    font-size: 14px;
  } */

  /*
  .bc-pricing__options {
    gap: 12px;
    margin-bottom: 20px;
  }

  .bc-pricing__option {
    padding: 12px;
  }

  .bc-pricing__option-radio {
    width: 18px;
    height: 18px;
  }

  .bc-pricing__option-radio-inner {
    width: 6px;
    height: 6px;
  }

  .bc-pricing__option-price {
    font-size: 15px;
  }

  .bc-pricing__option-period {
    font-size: 12px;
  }

  .bc-pricing__feature-icon,
  .bc-pricing__benefit-icon {
    width: 18px;
    height: 18px;
  }

  .bc-pricing__feature-icon svg,
  .bc-pricing__benefit-icon svg {
    width: 12px;
    height: 12px;
  }

  .bc-pricing__feature-text,
  .bc-pricing__box-dsc,
  .bc-pricing__benefit-text {
    font-size: 12px;
  } */
}

/* ********* */
/* ******  Variant Styles  ******
/* ********* */
.bc-variants {
  padding: 120px 0;
  background: linear-gradient(
    rgba(131, 199, 184, 0.2) 0%,
    rgba(131, 199, 184, 0.04) 100%
  );
  position: relative;
  z-index: 1;
}

.bc-variants::after {
  position: absolute;
  content: "";
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 356px;
  width: 356px;
  filter: blur(400px);
}

.bc-variants__header {
  text-align: center;
  max-width: 710px;
  margin: 0 auto 40px;
}

.bc-variants__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-variants__subtitle {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0 0 0;
}

.bc-variant-group-wrap {
  max-width: 100%;
}

.bc-variant-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-variant {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  /* cursor: pointer; */
}

.bc-variant-image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.66/1;
  overflow: hidden;
}

.bc-variant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

.bc-variant:hover .bc-variant-image img {
  transform: scale(1.05);
}

.bc-variant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 41.11%,
    rgba(0, 0, 0, 0.718) 75%,
    rgba(0, 0, 0, 0.918) 100%
  );
  pointer-events: none;
}

.bc-variant-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: left;
  z-index: 2;
}

.bc-variant-title {
  font: 500 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 10px 0;
}

.bc-variant-dsc {
  font: 400 14px/1.4 var(--global-font);
  color: var(--gray-color);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-variants {
    padding: 70px 0;
  }

  .bc-variants__title {
    font-size: 42px;
  }

  .bc-variant-group {
    gap: 16px;
  }

  .bc-variants__header {
    margin: 0 auto 36px;
  }

  /*
  .bc-variant {
    max-width: 220px;
  } */

  /* .bc-variant-image {
    height: 180px;
  } */

  /* .bc-variant-overlay {
    height: 80px;
  } */

  .bc-variant-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .bc-variants {
    padding: 60px 0;
  }

  .bc-variants__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .bc-variants__subtitle {
    font-size: 15px;
  }

  .bc-variant-group-wrap {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .bc-variants__header {
    margin: 0 auto 32px;
  }

  .bc-variant-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
  }

  /* .bc-variant {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  } */
  /*
  .bc-variant-image {
    height: 200px;
  }

  .bc-variant-overlay {
    height: 90px;
  } */

  .bc-variant-content {
    padding: 16px;
  }

  .bc-variant-title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .bc-variants {
    padding: 50px 0;
  }

  .bc-variants__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .bc-variants__subtitle {
    font-size: 14px;
  }

  .bc-variant {
    max-width: 280px;
  }
}

/* ********* */
/* ******  Traffic Section  ******
/* ********* */
.bc-traffic {
  padding: 120px 0 60px;
}

.bc-traffic__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.bc-traffic__content {
  flex: 1;
  max-width: 500px;
}

.bc-traffic__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-traffic__subtitle {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0;
}

.bc-traffic__grid {
  flex: 1;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}

.bc-traffic__item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: -1;
}

.bc-traffic__item:hover {
  background-color: #222222;
}

.bc-traffic__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-traffic__text {
  font: 400 16px/1.4 var(--global-font);
  color: var(--gray-color);
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bc-traffic__item {
    padding: 24px;
    gap: 30px;
  }
}

@media (max-width: 1023px) {
  .bc-traffic {
    padding: 70px 0;
  }

  .bc-traffic__title {
    font-size: 48px;
  }

  .bc-traffic__item {
    padding: 24px;
    gap: 30px;
  }

  .bc-traffic__icon {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 991px) {
  .bc-traffic {
    padding: 60px 0;
  }

  .bc-traffic__inner {
    flex-direction: column;
    gap: 40px;
  }

  .bc-traffic__content,
  .bc-traffic__grid {
    max-width: 100%;
  }

  .bc-traffic__title {
    font-size: 42px;
  }

  .bc-traffic__subtitle {
    font-size: 15px;
  }

  .bc-traffic__item {
  }

  .bc-traffic__text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .bc-traffic {
    padding: 50px 0;
  }

  .bc-traffic__inner {
    gap: 32px;
  }

  .bc-traffic__title {
    font-size: 36px;
  }

  .bc-traffic__item {
    padding: 24px 10px;
  }

  .bc-traffic__icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .bc-traffic {
    padding: 40px 0;
  }

  .bc-traffic__inner {
    gap: 28px;
  }

  .bc-traffic__title {
    font-size: 32px;
  }

  .bc-traffic__subtitle {
    font-size: 14px;
  }

  .bc-traffic__item {
    padding: 20px 12px;
  }

  .bc-traffic__icon {
    width: 32px;
    height: 32px;
  }

  .bc-traffic__text {
    font-size: 14px;
  }
}

/* ********* */
/* ******  Contact Styles  ******
/* ********* */
.bc-contact {
  padding: 60px 0;
  position: relative;
}

.bc-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.bc-contact__visual {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bc-contact__visual::after {
  content: "";
  position: absolute;
  height: 356px;
  width: 356px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--primary-color);
  filter: blur(200px);
}

.bc-contact__machine {
  position: relative;
}

.bc-contact__machine img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-contact__content {
  flex: 1;
  max-width: 50%;
}

.bc-contact__title {
  font: 700 54px/1.15 var(--primary-font);
  color: #ffffff;
  margin: 0 0 40px 0;
  letter-spacing: -0.2px;
  text-align: left;
}

.bc-contact__form {
  text-align: left;
}

.bc-contact__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.bc-contact__form-group {
  width: 100%;
}

.bc-contact__input,
.bc-contact__select,
.bc-contact__textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  color: #ffffff;
  font: 400 16px/1.4 var(--global-font);
  transition: all 0.3s ease;
}

.bc-contact__input::placeholder,
.bc-contact__textarea::placeholder {
  color: var(--gray-color);
}

.bc-contact__input:focus,
.bc-contact__select:focus,
.bc-contact__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.bc-contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.2788 6.4668L8.93208 10.8135C8.41875 11.3268 7.57875 11.3268 7.06542 10.8135L2.71875 6.4668' stroke='%23ffffff' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.bc-contact__select option {
  background-color: #2a2a2a;
  color: #ffffff;
}

.bc-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.bc-contact__button {
  margin-top: 24px;
}

/* .bc-contact__button {
  width: 100%;
  text-align: center;
  justify-content: center;
} */

/* Phone Input Styling with intl-tel-input */
.bc-contact__phone-group {
  position: relative;
}

.iti__selected-country-primary {
  margin-left: 4px;
  height: auto !important;
  display: flex;
  padding: 6px 4px !important;
  border-radius: 4px !important;
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
}

.bc-contact__phone-group .bc-contact__input {
  padding-left: 75px;
}

.bc-contact__phone-group .iti {
  width: 100%;
}

.bc-contact__phone-group .iti__flag-container {
  left: 1px;
  top: 1px;
}

.bc-contact__phone-group .iti__selected-flag {
  background-color: #3a3a3c;
  border-radius: 8px 0 0 8px;
  padding: 0 10px;
  height: 48px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bc-contact__phone-group .iti__selected-flag:hover {
  background-color: #404042;
}

.bc-contact__phone-group .iti__selected-flag .iti__flag {
  margin-right: 8px;
}

.bc-contact__phone-group .iti__selected-flag .iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.7);
  width: 0;
  height: 0;
  margin-left: 6px;
}

.bc-contact__phone-group .iti__selected-dial-code {
  color: #ffffff;
  font: 400 16px/1.4 var(--global-font);
  margin-right: 2px;
}

/* Country Dropdown Styling */
.bc-contact__phone-group .iti__country-list {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-height: 300px;
}

.bc-contact__phone-group .iti__country-list .iti__country {
  padding: 10px 16px;
  color: #ffffff;
  font: 400 14px/1.4 var(--global-font);
}

.bc-contact__phone-group .iti__country-list .iti__country:hover,
.bc-contact__phone-group .iti__country-list .iti__country--highlighted {
  background-color: #3a3a3c;
}

.bc-contact__phone-group .iti__country-list .iti__flag {
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-contact {
    padding: 50px 0;
  }

  .bc-contact__title {
    font-size: 48px;
  }

  .bc-contact__inner {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .bc-contact__inner {
    flex-direction: column;
  }

  .bc-contact__visual,
  .bc-contact__content {
    max-width: 100%;
    width: 100%;
  }

  .bc-contact__title {
    font-size: 42px;
  }

  .bc-contact__machine {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .bc-contact {
    padding: 0 0 30px;
  }

  .bc-contact__inner {
    gap: 32px;
  }

  .bc-contact__title {
    font-size: 36px;
  }

  .bc-contact__form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .bc-contact__input,
  .bc-contact__select,
  .bc-contact__textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .bc-contact__phone-group .bc-contact__input {
    padding-left: 70px;
  }

  .bc-contact__phone-group .iti__selected-flag {
    height: 46px;
    padding: 0 8px;
  }

  .bc-contact__textarea {
    min-height: 100px;
  }
}

@media (max-width: 575px) {
  .bc-contact__title {
    font-size: 32px;
  }

  .bc-contact__form-grid {
    gap: 10px;
    margin-bottom: 10px;
  }

  .bc-contact__input,
  .bc-contact__select,
  .bc-contact__textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .bc-contact__phone-group .bc-contact__input {
    padding-left: 65px;
    font-size: 14px;
  }

  .bc-contact__phone-group .iti__selected-flag {
    height: 44px;
    padding: 0 6px;
  }

  .bc-contact__phone-group .iti__selected-dial-code {
    font-size: 14px;
  }

  .bc-contact__textarea {
    min-height: 90px;
  }
}

/* ********* */
/* ******  Footer  ******
/* ********* */
.bc-footer {
  background-color: var(--dark-color);
  padding: 110px 0 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bc-footer::before,
.bc-footer::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, #83c7b8 0%, rgba(131, 199, 184, 0) 70%);
  filter: blur(250px);
  /* opacity: 0.8; */
  z-index: -1;
}

.bc-footer--alt.bc-footer::before,
.bc-footer--alt.bc-footer::after {
  display: none;
}

.bc-footer::before {
  width: 450px;
  top: 0;
  left: 110px;
}

.bc-footer::after {
  bottom: 0;
  right: 0;
  width: 438px;
}

.bc-footer__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bc-footer__top {
  display: flex;
  gap: 100px;
  margin-bottom: 60px;
}

.bc-footer--alt .bc-footer__top {
  display: block;
  text-align: center;
  margin-bottom: 70px;
}

.bc-footer--alt .bc-footer__title {
  font: 600 42px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 32px 0;
}

.bc-footer--alt .bc-footer__title .bc-highlight {
  color: var(--primary-color);
}

.bc-footer--alt .bc-footer__app-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 30px;
}

.bc-footer--alt .bc-footer__app-link {
  display: inline-block;
  max-width: 200px;
  height: auto;
}

.bc-footer--alt .bc-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.bc-footer--alt .bc-footer__link {
  font: 400 18px/1.6 var(--global-font);
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bc-footer--alt .bc-footer__link:hover {
  color: var(--primary-color);
}

.bc-footer__thumb-area {
  flex: 1.5;
  max-width: 450px;
}

.bc-footer__thumb {
  margin: 0 0 24px 0;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 415px;
  aspect-ratio: 1.15/1;
}

.bc-footer__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bc-footer__brand {
  max-width: 200px;
  display: inline-block;
}

.bc-footer__logo {
  max-width: 350px;
  margin: 0 auto 15px;
  display: inline-block;
}

.bc-footer__widget {
  flex: 1;
}

.bc-footer__widget-heading {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--light-color);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 30px 0;
}

.bc-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-footer__list li {
  margin-bottom: 24px;
}

.bc-footer__list li:last-child {
  margin-bottom: 0;
}

.bc-footer__link {
  font: 400 18px/1.6 var(--global-font);
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bc-footer__link:hover {
  color: var(--primary-color);
}

.bc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bc-footer__contact-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.bc-footer__contact-text {
  gap: 4px;
}

.bc-footer__contact-text {
  font: 400 18px/1.6 var(--global-font);
  color: var(--light-color);
  flex: 1;
  margin: 0;
}

.bc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-footer__copyright {
  font: 400 16px/1.2 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

.bc-footer__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.bc-footer__social-link {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

.bc-footer__social-link:hover {
  transform: translateY(-2px);
}

.bc-footer__social-link svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Responsive Footer */
@media (max-width: 1023px) {
  .bc-footer {
    padding: 60px 0 32px;
  }

  .bc-footer__top,
  .bc-footer--alt .bc-footer__top {
    gap: 40px;
    margin-bottom: 50px;
  }

  .bc-footer__content {
    gap: 50px;
  }

  .bc-footer--alt .bc-footer__title {
    font-size: 36px;
  }

  .bc-footer--alt .bc-footer__links {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .bc-footer {
    padding: 50px 0 30px;
  }

  .bc-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .bc-footer__thumb-area {
    flex: none;
    max-width: 100%;
  }

  .bc-footer__thumb {
    border-radius: 12px;
  }

  .bc-footer__content {
    flex-direction: column;
    gap: 40px;
  }

  .bc-footer--alt .bc-footer__title {
    font-size: 30px;
  }

  .bc-footer--alt .bc-footer__links {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .bc-footer {
    padding: 48px 0 24px;
  }

  .bc-footer__top,
  .bc-footer--alt .bc-footer__top {
    gap: 28px;
    margin-bottom: 40px;
  }

  .bc-footer--alt .bc-footer__app-links {
    gap: 14px;
  }

  .bc-footer--alt .bc-footer__app-link {
    width: 175px;
  }

  .bc-footer__thumb {
    margin-bottom: 20px;
  }

  .bc-footer__brand {
    max-width: 200px;
  }

  .bc-footer__logo {
    max-width: 225px;
    margin: 0 auto 12px;
  }

  .bc-footer__contact-item svg {
    width: 20px;
    height: 20px;
  }

  .bc-footer__content {
    gap: 32px;
  }

  .bc-footer--alt .bc-footer__title {
    font-size: 26px;
  }

  .bc-footer__widget-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bc-footer__list li {
    margin-bottom: 12px;
  }

  .bc-footer__link,
  .bc-footer__contact-text span {
    font-size: 16px;
  }

  .bc-footer__bottom {
    gap: 20px;
    padding-top: 20px;
  }

  .bc-footer__social {
    gap: 16px;
  }

  .bc-footer__social-link svg {
    width: 22px;
    height: 22px;
  }

  .bc-footer--alt .bc-footer__links {
    gap: 16px;
  }

  .bc-footer--alt .bc-footer__link {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bc-footer {
    padding: 48px 0 16px;
  }

  .bc-footer__top {
    gap: 24px;
  }

  .bc-footer--alt .bc-footer__top {
    margin-bottom: 32px;
  }

  .bc-footer__content {
    gap: 28px;
  }

  /* .bc-footer__widget-heading {
    font-size: 16px;
    margin-bottom: 10px;
  } */

  .bc-footer__separator {
    margin-bottom: 16px;
  }

  .bc-footer__list li {
    margin-bottom: 10px;
  }

  .bc-footer__bottom {
    gap: 16px;
    padding-top: 16px;
  }

  .bc-footer__copyright {
    font-size: 13px;
  }

  .bc-footer__social {
    gap: 14px;
  }

  .bc-footer__social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* ********* */
/* ******  FAQs  ******
/* ********* */
.bc-faqs {
  padding: 60px 0 120px;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-faqs__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.bc-faqs__title {
  font: 700 42px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 0;
  letter-spacing: -0.2px;
  max-width: 340px;
}

.bc-faqs__group {
  /* max-width: 1; */
  flex: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-faq-item {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
  border-radius: 20px;
  padding: 16px 100px 16px 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 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 30px 60px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(100px);
  position: relative;
}

.bc-faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/bg-dots.webp);
  background-position: center;
  z-index: -1;
}

.bc-faq-item:hover {
  border-color: rgba(131, 199, 184, 0.2);
}

.bc-faq-item--active {
  border-color: rgba(131, 199, 184, 0.3);
}

.bc-faq-item__header {
  padding: 0 0 16px;
  cursor: pointer;
}

.bc-faq-item__question {
  font: 600 20px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  flex: 1;
  text-align: left;
}

.bc-faq-item__toggle {
  background: linear-gradient(
    rgba(131, 199, 184, 0.04) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  border-radius: 8px;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s !important;
  flex-shrink: 0;
  padding: 0;
  position: absolute;
  top: 16px;
  right: 20px;
}

.bc-faq-item__icon {
  width: 18px;
  height: 18px;
  position: relative;
  transition: transform 0.3s ease;
}

.bc-faq-item__icon::before,
.bc-faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--light-color);
  border-radius: 1px;
}

.bc-faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bc-faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.bc-faq-item--active .bc-faq-item__icon::after {
  opacity: 0;
}

.bc-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s linear, padding 0.4s linear;
  padding: 0;
}

.bc-faq-item__answer p {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-faqs {
    padding: 70px 0;
  }

  .bc-faqs__title {
    font-size: 38px;
  }

  /*
  .bc-faqs__group {
    max-width: 100%;
  } */
}

@media (max-width: 991px) {
  .bc-faqs {
    padding: 60px 0;
  }

  .bc-faqs__inner {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .bc-faqs__title {
    font-size: 36px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .bc-faqs {
    padding: 50px 0;
  }

  .bc-faqs__inner {
    gap: 24px;
  }

  .bc-faqs__title {
    font-size: 32px;
  }

  .bc-faq-item__question {
    font-size: 18px;
  }

  .bc-faq-item__answer p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-faqs {
    padding: 40px 0;
  }

  .bc-faqs__title {
    font-size: 28px;
  }
}

/* ********* */
/* ******  Pricing Style 02  ******
/* ********* */
.bc-pricing--style-02 {
  padding: 60px 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.bc-pricing--style-02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
  aspect-ratio: 2/3;
  background-image: url(../images/music-icon.webp);
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.bc-pricing--style-02 .bc-pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.bc-pricing--style-02 .bc-pricing__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  letter-spacing: -0.2px;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.bc-pricing--style-02 .bc-pricing__content {
  display: flex;
  gap: 24px;
  align-items: stretch;
  max-width: 930px;
  margin: 0 auto;
}

.bc-pricing--style-02 .bc-pricing__card {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  border-radius: 20px;
  padding: 24px;
  flex: 1;
  max-width: 50%;
  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 30px 60px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  text-align: start;
}

.bc-pricing--style-02 .bc-pricing__card:nth-child(2) {
  background: linear-gradient(
      rgba(131, 199, 184, 0.04) 0%,
      rgba(131, 199, 184, 0.4) 100%
    ),
    linear-gradient(rgba(131, 199, 184, 0.04) 0%, rgba(131, 199, 184, 0.4) 100%),
    linear-gradient(rgba(131, 199, 184, 0.04) 0%, rgba(131, 199, 184, 0.4) 100%);
}

.bc-pricing--style-02 .bc-pricing__card-title {
  font: 400 26px/1.2 var(--global-font);
  color: var(--light-color);
  margin: 0 0 24px;
}

.bc-pricing--style-02 .bc-pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 40px;
}

.bc-pricing--style-02 .bc-pricing__card-amount {
  font: 600 54px/1.2 var(--primary-font);
  color: var(--primary-color);
}

.bc-pricing--style-02 .bc-pricing__card-period {
  font: 400 26px/1.2 var(--global-font);
  color: var(--light-color);
}

.bc-pricing--style-02 .bc-pricing__card-dropdown {
  margin-bottom: 16px;
}

.bc-pricing--style-02 .bc-pricing__card-select {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  border: 1px solid #e6e8ec;
  border-radius: 8px;
  color: var(--light-color);
  font: 400 16px/1.4 var(--global-font);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.2788 6.4668L8.93208 10.8135C8.41875 11.3268 7.57875 11.3268 7.06542 10.8135L2.71875 6.4668' stroke='%23ffffff' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.bc-pricing--style-02 .bc-pricing__card-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.bc-pricing--style-02 .bc-pricing__card-select option {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.bc-pricing--style-02 .bc-pricing__card-action {
  text-align: left;
}

.bc-pricing--style-02 .bc-pricing__card-button {
  width: 100%;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .bc-pricing--style-02 {
    padding: 50px 0;
  }

  .bc-pricing--style-02 .bc-pricing__title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .bc-pricing--style-02 .bc-pricing__card-amount {
    font-size: 48px;
  }

  .bc-pricing--style-02::after {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .bc-pricing--style-02 .bc-pricing__title {
    font-size: 42px;
  }

  .bc-pricing--style-02 .bc-pricing__card-amount {
    font-size: 40px;
  }

  .bc-pricing--style-02::after {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .bc-pricing--style-02 {
    padding: 40px 0;
  }

  .bc-pricing--style-02 .bc-pricing__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-pricing--style-02 .bc-pricing__card {
    padding: 20px;
    max-width: 100%;
  }

  .bc-pricing--style-02 .bc-pricing__card-title {
    font-size: 20px;
  }

  .bc-pricing--style-02 .bc-pricing__card-amount {
    font-size: 32px;
  }

  .bc-pricing--style-02 .bc-pricing__card-period {
    font-size: 20px;
  }

  .bc-pricing--style-02::after {
    top: 50px;
    height: 150px;
  }
}

@media (max-width: 575px) {
  .bc-pricing--style-02 {
    padding: 30px 0;
  }

  .bc-pricing--style-02 .bc-pricing__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .bc-pricing--style-02 .bc-pricing__card {
    padding: 16px;
  }

  .bc-pricing--style-02 .bc-pricing__card-amount {
    font-size: 26px;
  }

  .bc-pricing--style-02::after {
    height: 100px;
  }
}

/* ********* */
/* ******  Digital Products  ******
/* ********* */
.bc-digital-products {
  padding: 110px 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.bc-inner .bc-digital-products {
  padding: 120px 0;
}

.bc-solutions .bc-digital-products::after {
  position: absolute;
  content: "";
  height: 356px;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  filter: blur(400px);
  z-index: -1;
}

.bc-digital-products__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;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
}

.bc-digital-products__header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.bc-digital-products__inner {
  position: relative;
  z-index: 1;
}

.bc-digital-products__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  text-align: center;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.bc-digital-products__description {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  text-align: center;
  margin: 0;
}

.bc-digital-products__group {
  display: flex;
  gap: 24px;
  max-width: 1012px;
  margin: 0 auto;
}

.bc-digital-product {
  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);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bc-digital-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-dots.webp");
  z-index: -1;
}

.bc-digital-product__header {
  max-width: 450px;
  margin: 0 auto;
  padding: 24px;
}

.bc-digital-product__title {
  font: 700 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bc-digital-product__title--accent {
  color: var(--primary-color);
}

.bc-digital-product__description {
  font: 400 14px/1.6 var(--global-font);
  color: var(--light-color);
  /* margin: 0 0 40px 0; */
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bc-digital-product__image {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: -20px;
}

/* .bc-digital-product:first-child .bc-digital-product__image{
  margin-bottom: -35px;
} */

.bc-digital-product__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
}

@media (max-width: 1023px) {
  .bc-digital-products__title {
    font-size: 48px;
  }

  /* .bc-digital-products__header,
  .bc-digital-product__description {
    margin-bottom: 32px;
  } */
}

@media (max-width: 991px) {
  .bc-digital-products,
  .bc-inner .bc-digital-products {
    padding: 80px 0;
  }

  .bc-digital-products__title {
    font-size: 42px;
  }

  .bc-digital-products__group {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .bc-digital-products,
  .bc-inner .bc-digital-products {
    padding: 60px 0;
  }

  .bc-digital-products__text {
    font-size: 120px;
    transform: translate(-50%, -100%);
  }

  .bc-digital-products__title {
    font-size: 36px;
  }

  .bc-digital-products__description {
    font-size: 14px;
  }

  .bc-digital-products__group {
    flex-direction: column;
    gap: 16px;
  }

  /* .bc-digital-products__header,
  .bc-digital-product__description {
    margin-bottom: 24px;
  } */
}

@media (max-width: 575px) {
  .bc-digital-products,
  .bc-inner .bc-digital-products {
    padding: 48px 0;
  }

  .bc-digital-products__title {
    font-size: 32px;
  }

  .bc-digital-product__header {
    padding: 20px;
  }

  .bc-digital-product__title {
    font-size: 20px;
  }

  .bc-digital-product__description {
    font-size: 10px;
  }
}

/* ********* */
/* ******  Offers  ******
/* ********* */
.bc-offers {
  padding: 60px 0;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.bc-offers__inner {
  position: relative;
  z-index: 1;
}

.bc-offers__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--light-color);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  letter-spacing: -0.2px;
}

.bc-offers__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bc-offers__content::after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0.07%,
    rgba(131, 199, 184, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Left Side */
.bc-offers__left {
}

.bc-offers__left-title {
  font: 600 42px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
}

.bc-offers__left-description {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0 0;
}

.bc-offers__left-image {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

.bc-offers__left-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right Side */
.bc-offers__right {
}

.bc-offers__left-header,
.bc-offers__right-header {
  max-width: 600px;
  margin: 0 auto;
}

.bc-offers__right-title {
  font: 700 42px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 16px;
  text-align: center;
}

.bc-offers__right-description {
  font: 400 16px/1.6 var(--global-font);
  color: var(--gray-color);
  margin: 0 0 10px;
}

.bc-offers__right-table {
  background: linear-gradient(
    rgba(131, 199, 184, 0) 0%,
    rgba(131, 199, 184, 0.15) 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;
  z-index: 1;
}

.bc-offers__right-table__wave {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 80%;
  height: auto;
  z-index: -1;
}

.bc-offers__table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bc-offers__table-item {
  padding: 16px;
  font: 400 14px/1.4 var(--global-font);
  color: var(--light-color);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 253, 0.1);
  margin: -1px;
}

.bc-offers__right-image {
  overflow: hidden;
  max-width: 390px;
  margin: 55px auto 0;
}

.bc-offers__right-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bc-offers__content {
    gap: 60px;
  }
}

@media (max-width: 1023px) {
  .bc-offers__title {
    font-size: 48px;
  }

  .bc-offers__left-title,
  .bc-offers__right-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .bc-offers {
    padding: 40px 0;
  }

  .bc-offers__content {
    grid-template-columns: 1fr;
  }

  .bc-offers__content::after {
    display: none;
  }

  .bc-offers__left {
    position: relative;
  }

  .bc-offers__left::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -30px;
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0.07%,
      rgba(131, 199, 184, 0.2) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .bc-offers__title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .bc-offers__left-title,
  .bc-offers__right-title {
    font-size: 30px;
  }

  .bc-offers__left,
  .bc-offers__right {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .bc-offers {
    padding: 20px 0;
  }

  .bc-offers__title {
    font-size: 36px;
  }

  .bc-offers__left-title,
  .bc-offers__right-title {
    font-size: 26px;
  }

  .bc-offers__left-description,
  .bc-offers__right-description {
    font: 400 14px/1.6 var(--global-font);
  }

  .bc-offers__right-table {
    border-radius: 12px;
  }

  .bc-offers__left-image {
    margin-top: 24px;
  }

  .bc-offers__right-image {
    margin-top: 35px;
  }
}

@media (max-width: 575px) {
  .bc-offers__title {
    font-size: 32px;
  }

  .bc-offers__table-item {
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .bc-offers__right-table__wave {
    transform: translate(-50%, 90%);
  }
}

/* *********** */
/* ******  Feature Cards  ******
/* *********** */
.bc-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.bc-feature-card {
  background: linear-gradient(
    rgba(131, 199, 184, 0.04) 0%,
    rgba(131, 199, 184, 0.4) 100%
  );
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
  z-index: 1;
}

.bc-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    rgba(131, 199, 184, 0.05) 0%,
    rgba(131, 199, 184, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bc-feature-cards::after {
  content: "";
  position: absolute;
  top: -66px;
  right: 0;
  width: 685px;
  height: 100%;
  background-color: var(--dark-color);
  filter: blur(25px);
  z-index: -1;
}

.bc-feature-card__title {
  font: 700 24px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 20px 0;
}

.bc-feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-feature-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-feature-card__item:last-child {
  margin: 0;
}

.bc-feature-card__check {
  width: 12px;
}

.bc-feature-card__text {
  flex: 1;
  font: 400 14px/1.5 var(--global-font);
  color: var(--light-color);
}

@media (max-width: 1200px) {
  .bc-feature-cards {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .bc-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bc-feature-cards {
    gap: 16px;
  }

  .bc-feature-card {
    padding: 16px;
  }

  .bc-feature-card__title {
    font-size: 20px;
  }

  .bc-feature-card__text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-feature-cards {
    grid-template-columns: 1fr;
  }

  .bc-feature-card__text {
    font-size: 12px;
  }
}

/* *********** */
/* ******  Facilities  ******
/* *********** */
.bc-facilities {
  padding: 100px 0 50px;
  position: relative;
  z-index: 1;
}

.bc-facilities__inner {
  max-width: 100%;
}

.bc-facilities__title {
  font: 700 54px/1.1 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: -0.2px;
}

.bc-facilities__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bc-facility {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.bc-facility-image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.65/1;
  overflow: hidden;
}

.bc-facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bc-facility:hover .bc-facility-image img {
  transform: scale(1.02);
}

.bc-facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 55.91%,
    rgba(9, 29, 25, 0.16) 64.73%,
    rgba(18, 58, 49, 0.52) 73.55%,
    rgba(27, 87, 74, 0.68) 82.36%,
    rgba(36, 116, 98, 0.84) 91.18%,
    rgb(45, 145, 123) 100%
  );
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.bc-facility:hover .bc-facility-overlay {
  transform: translateY(0);
}

.bc-facility-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 18px 20px;
  z-index: 2;
  transition: transform 0.5s ease;
  transform: translateY(100%);
}

.bc-facility:hover .bc-facility-content {
  transform: translateY(0);
}

.bc-facility-title {
  font: 700 26px/1.2 var(--primary-font);
  color: var(--light-color);
  margin: 0;
  letter-spacing: -0.2px;
  position: absolute;
  width: 100%;
  bottom: 100%;
  left: 0;
  padding: 0 18px 20px;
  transition: 0.3s;
}

.bc-facility:hover .bc-facility-title {
  padding: 0 18px 8px;
}

.bc-facility-dsc {
  font: 400 14px/1.6 var(--global-font);
  color: var(--light-color);
  margin: 0;
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
}

@media (max-width: 1023px) {
  .bc-facilities {
    padding: 80px 0 40px;
  }

  .bc-facilities__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-facilities__title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .bc-facilities {
    padding: 60px 0 30px;
  }

  .bc-facilities__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-facilities {
    padding: 48px 0 24px;
  }

  .bc-facilities__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-facility-image {
    aspect-ratio: 1.14/1;
  }

  .bc-facilities__content {
    grid-template-columns: 1fr;
  }

  .bc-facility-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0) 55.91%, rgb(0, 0, 0) 100%);
    transform: translateY(0);
  }

  .bc-facility .bc-facility-content {
    transform: translateY(0);
  }

  .bc-facility .bc-facility-title {
    padding: 0 18px 8px;
  }
}

@media (max-width: 575px) {
  .bc-facilities__title {
    font-size: 32px;
  }
}

/* ************ */
/* ******  Benefits  ******
/* ************ */
.bc-benefits {
  padding: 100px 0 110px;
  background: #e5eaf2;
}

.bc-benefits__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  text-align: center;
  margin: 0 0 40px 0;
}

.bc-benefits__group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.bc-benefits__card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
}

.bc-benefits__image {
  width: 100%;
  aspect-ratio: 1.4/1;
  overflow: hidden;
  display: block;
}

.bc-benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-benefits__content {
  padding: 20px;
}

.bc-benefits__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bc-benefits__card-title {
  font: 600 26px/1.35 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
  max-width: 330px;
}

/* Responsive */
@media (max-width: 1023px) {
  .bc-benefits {
    padding: 80px 0;
  }

  .bc-benefits__group {
    gap: 20px;
  }

  .bc-benefits__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  .bc-benefits {
    padding: 60px 0;
  }

  .bc-benefits__title {
    font-size: 42px;
  }

  .bc-benefits__card {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
  }
}

@media (max-width: 767px) {
  .bc-benefits {
    padding: 50px 0;
  }

  .bc-benefits__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-benefits__group {
    gap: 16px;
  }

  .bc-benefits__card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .bc-benefits__title {
    font-size: 32px;
  }
}

/* ************ */
/* ******  Partners Testimonials  ******
/* ************ */
.bc-partners-testimonials {
  /* padding-top: 60px; */
  background: var(--light-color);
}

.bc-partners-testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.bc-partners-testimonials__swiper {
  padding: 120px 15px;
  /* padding: 60px 15px 0; */
  margin: 0 -15px;
  position: relative;
  z-index: 1;
}

.bc-partners-testimonials__swiper .swiper-slide {
  height: auto !important;
}

.bc-testimonial {
  display: flex;
  align-items: stretch;
  gap: 50px;
  height: 100%;
}

.bc-testimonial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 490px;
}

.bc-testimonial__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.bc-testimonial__quote {
  margin: 0 0 32px;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
  max-width: 490px;
}

.bc-testimonial__quote::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -11px;
  width: 21px;
  height: 21px;
  background: url("../images/quote-icon.svg") no-repeat center center;
  background-size: contain;
  z-index: -1;
}

.bc-testimonial__quote p {
  font: 600 18px/1.6 var(--global-font);
  font-style: italic;
  color: var(--dark-color);
  margin: 0 0;
}

.bc-testimonial__footer {
  padding-top: 32px;
  border-top: 1px solid rgba(20, 20, 22, 0.1);
  margin-top: auto;
  gap: 20px;
}

.bc-testimonial__name {
  font: 600 26px/1.2 var(--primary-font);
  color: var(--dark-color);
  font-style: normal;
  display: block;
}

.bc-testimonial__affiliation {
  font: 400 20px/1.4 var(--global-font);
  color: rgba(20, 20, 22, 0.6);
  display: block;
  margin-top: 5px;
}

.bc-testimonial__nav {
  display: flex;
  gap: 10px;
}

.bc-testimonial__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(20, 20, 22, 0.1);
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  color: var(--dark-color);
}

.bc-testimonial__nav-btn svg {
  width: 20px;
  height: 20px;
}

.bc-testimonial__nav-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.bc-testimonial__nav-btn--active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.bc-testimonial__image {
  flex: 1;
  position: relative;
  /* max-width: 500px; */
  /* margin: -120px 0; */
}

.bc-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
  display: block;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1200px) {
  .bc-testimonial {
    gap: 30px;
  }
}

@media (max-width: 1023px) {
  /* .bc-testimonial__content {
    max-width: 100%;
    text-align: center;
  } */

  .bc-partners-testimonials__swiper {
    padding: 80px 15px;
  }

  /* .bc-testimonial__nav {
    justify-content: center;
    position: absolute;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  } */

  .bc-testimonial__image {
    max-width: 100%;
    margin: 0 auto;
  }

  .bc-testimonial__graphic {
    width: 300px;
    height: 300px;
  }

  .bc-testimonial__graphic::before {
    width: 260px;
    height: 260px;
  }

  .bc-testimonial__graphic::after {
    width: 220px;
    height: 220px;
  }

  .bc-testimonial__title {
    font-size: 48px;
    margin-bottom: 36px;
  }
}

@media (max-width: 991px) {
  .bc-partners-testimonials__swiper {
    padding: 60px 15px 0;
  }

  .bc-testimonial {
    flex-direction: column;
    gap: 24px;
  }

  .bc-testimonial__content {
    max-width: 100%;
  }

  .bc-testimonial__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-partners-testimonials__swiper {
    padding: 48px 15px 0;
  }

  /* .bc-partners-testimonials {
    padding-top: 48px;
  } */

  .bc-testimonial__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-testimonial__quote {
    margin-bottom: 24px;
    max-width: 100%;
  }

  .bc-testimonial__quote p {
    font-size: 16px;
  }

  .bc-testimonial__name {
    font-size: 20px;
  }

  .bc-testimonial__nav-btn {
    width: 40px;
    height: 40px;
  }

  .bc-testimonial__nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .bc-testimonial__footer {
    padding-top: 24px;
  }

  .bc-testimonial__graphic {
    width: 250px;
    height: 250px;
  }

  .bc-testimonial__graphic::before {
    width: 220px;
    height: 220px;
  }

  .bc-testimonial__graphic::after {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 575px) {
  .bc-testimonial__title {
    font-size: 32px;
  }

  .bc-testimonial__affiliation {
    font-size: 14px;
  }
}

/* ************ */
/* ******  Brands  ******
/* ************ */
.bc-brands {
  padding: 120px 0 60px;
  background: #e5eaf2;
}

.bc-brands__inner {
  text-align: center;
}

.bc-brands__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 16px 0;
  text-align: center;
}

.bc-brands__description {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.bc-brands__group {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.bc-brand {
  background: var(--light-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 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 30px 60px 0 rgba(255, 255, 255, 0.1);
}

.bc-brand img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.bc-brands__action {
  text-align: center;
}

.bc-brands__button {
  padding: 18px 50px;
}

/* Responsive */
@media (max-width: 1200px) {
  .bc-brands__group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .bc-brands {
    padding: 80px 0 40px;
  }

  .bc-brands__title {
    font-size: 48px;
  }

  .bc-brands__group {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .bc-brands {
    padding: 60px 0 30px;
  }

  .bc-brands__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-brands {
    padding: 48px 0 24px;
  }

  .bc-brands__title {
    font-size: 36px;
  }

  .bc-brands__group {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .bc-brand img {
    max-height: 55px;
  }

  .bc-brands__button {
    padding: 16px 40px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-brands__title {
    font-size: 32px;
  }
}

/* Partner page FAQ styles */
/* ************ */
/* ******  FAQs  ******
/* ************ */
.bc-faqs.bc-faq--alt {
  padding: 60px 0 120px;
  background: #e5eaf2;
}

.bc-professional .bc-faqs.bc-faq--alt {
  padding: 120px 0;
  background-color: var(--light-color);
}

.bc-faq--alt .bc-faqs__inner {
  max-width: 810px;
  margin: 0 auto;
  display: block;
}

.bc-faq--alt .bc-faqs__title {
  max-width: 450px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--dark-color);
}

.bc-faq--alt .bc-faqs__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-professional .bc-faq--alt .bc-faq-item {
  background: var(--gray-color);
}

.bc-faq--alt .bc-faq-item {
  background: var(--light-color);
  border-radius: 16px;
  padding: 16px 60px 16px 20px;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

/* .bc-faq--alt .bc-faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} */

/* .bc-faq--alt .bc-faq-item--active {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
} */

.bc-faq--alt .bc-faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.bc-faq--alt .bc-faq-item__question {
  font: 600 26px/1.3 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  padding-right: 12px;
}

.bc-faq--alt .bc-faq-item__toggle {
  background: var(--gray-color);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 0;
}

/* .bc-faq--alt .bc-faq-item__toggle:hover {
  background: #d0d7e0;
} */

.bc-faq--alt .bc-faq-item__icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.bc-faq--alt .bc-faq-item__icon::before,
.bc-faq--alt .bc-faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--dark-color);
  border-radius: 2px;
}

.bc-faq--alt .bc-faq-item__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bc-faq--alt .bc-faq-item__icon::after {
  width: 2px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.bc-faq--alt .bc-faq-item--active .bc-faq-item__icon::after {
  opacity: 0;
}

.bc-faq--alt .bc-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.bc-faq--alt .bc-faq-item__answer p {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0;
  opacity: 0.8;
}

.bc-faq--alt .bc-faq-item--active .bc-faq-item__answer {
  max-height: 500px;
  padding-top: 16px;
}

/* Responsive for Partner FAQ */
@media (max-width: 1023px) {
  .bc-faqs.bc-faq--alt {
    padding: 40px 0 80px;
  }

  .bc-professional .bc-faqs.bc-faq--alt {
    padding: 80px 0;
  }

  .bc-faq--alt .bc-faqs__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  .bc-faq--alt .bc-faqs__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .bc-faqs.bc-faq--alt {
    padding: 30px 0 60px;
  }

  .bc-professional .bc-faqs.bc-faq--alt {
    padding: 60px 0;
  }

  .bc-faq--alt .bc-faqs__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-faq--alt .bc-faq-item__question {
    font-size: 20px;
  }

  .bc-faq--alt .bc-faq-item--active .bc-faq-item__answer {
    padding-top: 10px;
  }

  .bc-faq--alt .bc-faq-item__answer p {
    font-size: 14px;
  }

  .bc-faq--alt .bc-faq-item__toggle {
    width: 36px;
    height: 36px;
  }

  .bc-faq--alt .bc-faq-item__icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 575px) {
  .bc-faqs.bc-faq--alt {
    padding: 24px 0 50px;
  }

  .bc-professional .bc-faqs.bc-faq--alt {
    padding: 50px 0;
  }

  .bc-faq--alt .bc-faqs__title {
    font-size: 32px;
  }
}

/* ************ */
/* ******  CTA  ******
/* ************ */
.bc-cta {
  position: relative;
  padding: 142px 0;
  z-index: 1;
}

.bc-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bc-cta__thumb {
  position: absolute;
  left: 0;
  top: -26px;
  max-width: 40%;
  height: 100%;
  z-index: 2;
}

.bc-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
}

.bc-cta__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    111.87deg,
    rgb(0, 0, 0) 15.03%,
    rgba(0, 0, 0, 0) 91.92%
  );
  z-index: 1;
}

.bc-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 50%;
  min-width: 485px;
  margin-left: auto;
}

.bc-cta__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 40px;
  text-transform: none;
}

/* Responsive */
@media (max-width: 1023px) {
  /* .bc-cta {
    padding: 100px 0;
  } */

  .bc-cta__title {
    font-size: 48px;
    margin-bottom: 36px;
  }

  .bc-cta__button {
    padding: 18px 45px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .bc-cta__inner {
    min-width: 400px;
  }

  .bc-cta__title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  /* .bc-cta {
    padding: 70px 0;
  } */

  .bc-cta__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .bc-cta__thumb {
    max-width: 30%;
  }

  .bc-cta__inner {
    min-width: auto;
    width: 100%;
    max-width: 75%;
  }
}

@media (max-width: 575px) {
  .bc-cta {
    padding: 152px 0 192px;
  }

  .bc-cta__thumb {
    max-width: 50%;
  }

  .bc-cta__title {
    font-size: 32px;
  }
}

/* ************ */
/* ******  How It Works  ******
/* ************ */
.bc-how-it-works {
  padding: 50px 0 120px;
  background: var(--light-color);
}

.bc-professional .bc-how-it-works {
  padding: 120px 0 60px;
}

.bc-how-it-works__inner {
  max-width: 100%;
}

.bc-how-it-works__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  text-align: center;
  margin: 0 0 40px;
}

.bc-how-it-works__content {
  margin-bottom: 40px;
}

.bc-how-it-works__content {
  display: flex;
  align-items: center;
  /* align-items: flex-start; */
  gap: 60px;
}

.bc-how-it-works__thumb {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  /* position: sticky;
  top: 200px; */
}

.bc-how-it-works__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bc-how-it-works__thumb img.fade-in {
  animation: fadeInImage 0.5s ease;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bc-how-it-works__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bc-how-it-works__steps::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 2px;
  background: var(--primary-color);
  z-index: 3;
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 0;
  will-change: height;
  display: none;
}

.bc-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-bottom: 75px;
}

/* .bc-professional .bc-step{
  padding-bottom: 32px;
} */

@media (max-width: 991px) {
  .bc-step {
    cursor: default;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .bc-step__info {
    pointer-events: auto;
  }

  .bc-how-it-works__steps::after {
    display: none;
  }
}

.bc-step:last-child {
  padding-bottom: 0;
}

.bc-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e6e8ec;
}

.bc-step:last-child::before {
  display: none;
}

.bc-step__icon {
  width: 44px;
  height: 44px;
  background: #e6e8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-step--active .bc-step__icon {
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .bc-step--current-active .bc-step__icon {
    transform: scale(1.05);
  }
}

/* .bc-step--active .bc-step__icon svg path {
  fill: #ffffff;
} */

.bc-step__icon svg {
  width: 24px;
  height: 24px;
}

.bc-step__info {
  flex: 1;
}

.bc-step__number {
  font: 400 14px/1.4 var(--global-font);
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 12px;
}

.bc-step__title {
  font: 700 26px/1.3 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 12px;
}

.bc-step__description {
  font: 400 18px/1.5 var(--global-font);
  color: var(--dark-color);
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.bc-step__thumb {
  display: none;
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.bc-step__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-how-it-works__action {
  text-align: center;
}

.bc-how-it-works__button {
  padding: 20px 50px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
  .bc-how-it-works__content {
    gap: 50px;
  }
}

@media (max-width: 1023px) {
  .bc-how-it-works {
    padding: 40px 0 80px;
  }

  .bc-professional .bc-how-it-works {
    padding: 80px 0 40px;
  }

  .bc-how-it-works__title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .bc-how-it-works__content {
    gap: 40px;
  }

  .bc-step {
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .bc-how-it-works {
    padding: 30px 0 60px;
  }

  .bc-professional .bc-how-it-works {
    padding: 60px 0 30px;
  }

  .bc-how-it-works__title {
    font-size: 42px;
  }

  .bc-how-it-works__content {
    flex-direction: column;
    gap: 32px;
  }

  .bc-how-it-works__steps {
    width: 100%;
  }

  .bc-step {
    padding-bottom: 32px;
  }

  .bc-step:last-child {
    padding-bottom: 0;
  }

  .bc-how-it-works__thumb {
    display: block;
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .bc-step__thumb {
    display: none;
  }

  .bc-step__description {
    margin-bottom: 0;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .bc-how-it-works {
    padding: 24px 0 48px;
  }

  .bc-professional .bc-how-it-works {
    padding: 48px 0 24px;
  }

  .bc-how-it-works__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-step__number {
    margin-bottom: 6px;
  }

  .bc-how-it-works__content {
    gap: 24px;
  }

  .bc-step {
    gap: 16px;
    padding-bottom: 32px;
  }

  .bc-step__title {
    font-size: 20px;
  }

  .bc-step__description {
    font-size: 14px;
  }

  .bc-how-it-works__button {
    padding: 16px 40px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .bc-how-it-works__title {
    font-size: 32px;
  }

  .bc-how-it-works__button {
    padding: 14px 35px;
    font-size: 14px;
  }
}

/* ************ */
/* ******  Partnership  ******
/* ************ */
.bc-partnership {
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}

.bc-professional .bc-partnership {
  padding: 0 0 120px;
  margin: 0;
}

.bc-partnership__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background: linear-gradient(
    -90deg,
    rgb(28, 78, 61) 0%,
    rgb(131, 199, 184) 81.73%,
    rgb(28, 78, 61) 100%
  );
}

.bc-professional .bc-partnership__inner {
  overflow: hidden;
}

.bc-partnership__thumb {
  flex: 1;
  max-width: 550px;
  position: relative;
  margin: -100px 0 -30px -20px;
}

.bc-professional .bc-partnership__thumb {
  margin: -50px 0 -100px -20px;
}

.bc-professional .bc-partnership__thumb-wrapper {
  flex: 1;
  position: relative;
  z-index: 2;
}

.bc-partnership__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bc-partnership__badge {
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: 10;
  width: 195px;
  aspect-ratio: 1/1;
  transform: translateX(100%);
}

.bc-partnership__badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-partnership__content {
  flex: 1;
  max-width: 485px;
  padding: 80px 20px 80px 0;
  color: var(--light-color);
}

.bc-professional .bc-partnership__content {
  max-width: 50%;
}

.bc-partnership__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 12px 0;
  /* letter-spacing: 1.px; */
  text-transform: uppercase;
}

.bc-partnership__title {
  font: 700 56px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.bc-partnership__dsc {
  font: 400 20px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0 0 40px 0;
}

.bc-partnership__actions {
  margin-top: 40px;
}

/* .bc-partnership__button {
  background-color: var(--light-color);
  color: #3a7868;
  padding: 18px 42px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bc-partnership__button:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: #2a5d4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
} */

/* Responsive Design */
@media (max-width: 1280px) {
  .bc-partnership__badge {
    width: 150px;
    /* top: 0; */
    transform: translateX(60%);
  }

  .bc-partnership__content {
    padding: 40px 20px;
  }

  .bc-partnership__title {
    font-size: 48px;
  }

  .bc-professional .bc-partnership__thumb {
    margin: -50px 0 -150px -20px;
  }
}

@media (max-width: 1023px) {
  .bc-partnership {
    padding: 80px 0 100px;
    border-radius: 24px;
    margin: 40px 0;
  }

  .bc-professional .bc-partnership {
    padding: 0 0 80px;
  }

  .bc-partnership__thumb-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .bc-partnership__badge {
    right: 20px;
    top: 20px;
  }

  .bc-partnership__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .bc-professional .bc-partnership {
    padding: 0 0 60px;
  }

  .bc-partnership__inner {
    background: linear-gradient(
      0deg,
      rgb(28, 78, 61) 0%,
      rgb(131, 199, 184) 81.73%,
      rgb(28, 78, 61) 100%
    );
    flex-direction: column;
    gap: 35px;
  }

  .bc-professional .bc-partnership__inner {
    background: linear-gradient(
      0deg,
      rgb(28, 78, 61) 0%,
      rgb(131, 199, 184) 50%,
      rgb(28, 78, 61) 100%
    );
  }

  .bc-professional .bc-partnership__inner {
    flex-direction: column-reverse;
    padding: 32px;
  }

  .bc-professional .bc-partnership__thumb,
  .bc-professional .bc-partnership__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .bc-professional .bc-partnership__thumb {
    margin: 0 0 -60px;
  }

  .bc-partnership__title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .bc-partnership__content {
    max-width: 100%;
    width: 100%;
    padding: 0 20px 30px;
  }

  .bc-partnership__badge {
    top: auto;
    bottom: 0;
  }

  .bc-partnership__thumb {
    margin: -100px 0 0;
  }
}

@media (max-width: 767px) {
  .bc-partnership {
    padding: 60px 0 80px;
    border-radius: 20px;
    margin: 30px 0;
  }

  .bc-professional .bc-partnership {
    padding: 0 0 48px;
  }

  .bc-partnership__inner {
    border-radius: 20px;
  }

  .bc-partnership__title {
    font-size: 36px;
  }

  .bc-partnership__subtitle {
    font-size: 16px;
  }

  .bc-partnership__dsc {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .bc-partnership__thumb {
    flex-direction: column;
    align-items: center;
  }

  .bc-partnership__badge {
    transform: translate(40%, 40%);
  }
}

@media (max-width: 575px) {
  .bc-partnership__subtitle {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .bc-partnership__title {
    font-size: 32px;
    margin: 0 0 15px;
  }

  .bc-partnership__thumb {
    margin: -80px 0 0;
  }

  .bc-partnership__badge {
    height: 100px;
    width: 100px;
    transform: translate(0%, 40%);
  }
}

/* ************ */
/* ******  Price Plan  ******
/* ************ */
.bc-price-plan {
  position: relative;
  padding: 120px 0 90px;
  background-color: #e6e8ec;
  overflow: hidden;
}

.bc-price-plan__bg-left,
.bc-price-plan__bg-right {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.bc-price-plan__bg-left {
  left: 0;
  top: 75px;
  width: 195px;
  aspect-ratio: 0.3/1;
}

.bc-price-plan__bg-left img {
  width: 100%;
  height: 100%;
  display: block;
}

.bc-price-plan__bg-right {
  right: 0;
  bottom: 0;
  width: 417px;
  aspect-ratio: 4/3;
}

.bc-price-plan__bg-right img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-price-plan__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.bc-price-plan__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: -0.2px;
}

.bc-price-plan__table-wrapper {
  margin-bottom: 40px;
}

.bc-price-plan__table {
  width: 100%;
  background-color: var(--light-color);
  border-radius: 30px;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bc-price-plan__header {
  font: 600 26px/1.25 var(--primary-font);
  color: var(--dark-color);
  text-align: left;
  padding: 24px 30px;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.bc-price-plan__header:last-child {
  border-right: none;
}

/* .bc-price-plan__header--right {
  text-align: right;
} */

.bc-price-plan__cell {
  padding: 24px 30px;
  font: 400 16px/1.5 var(--global-font);
  color: var(--dark-color);
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.bc-price-plan__cell:last-child {
  border-right: none;
}

.bc-price-plan__row:last-child .bc-price-plan__cell {
  border-bottom: none;
}

.bc-price-plan__cell--plan strong {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--dark-color);
}

.bc-price-plan__cell--included {
  font: 400 18px/1.5 var(--global-font);
  color: var(--dark-color);
}

/* .bc-price-plan__cell--price {
  text-align: right;
} */

.bc-price-plan__cell--price strong {
  font: 700 32px/1.25 var(--primary-font);
  color: #66c2b0;
}

.bc-price-plan__period {
  font: 400 16px/1.25 var(--global-font);
  color: #b1b5c3;
  margin-left: 4px;
}

.bc-price-plan__promo {
  font: 400 16px/1.5 var(--global-font);
  color: var(--dark-color);
  text-align: center;
  margin: 0 0 24px 0;
}

.bc-price-plan__promo strong {
  font-weight: 700;
}

.bc-price-plan__actions {
  text-align: center;
}

/* .bc-price-plan__button {
  display: inline-block;
  font: 700 16px/1.25 var(--primary-font) !important;
  color: #ffffff !important;
  background-color: #66c2b0 !important;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 194, 176, 0.3);
  border: none;
}

.bc-price-plan__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 194, 176, 0.4);
  background-color: #5ab5a5 !important;
}

.bc-price-plan__button span {
  display: block;
} */

@media (max-width: 1200px) {
  .bc-price-plan__bg-left {
    width: 100px;
  }

  .bc-price-plan__bg-right {
    width: 200px;
  }

  .bc-price-plan__cell--included {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .bc-price-plan__title {
    font-size: 48px;
  }

  .bc-price-plan__table {
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .bc-price-plan {
    padding: 70px 0 60px;
  }

  .bc-price-plan__title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .bc-price-plan__header {
    font-size: 16px;
    padding: 20px 20px;
  }

  .bc-price-plan__cell {
    padding: 20px;
    font-size: 14px;
  }

  .bc-price-plan__period {
    font-size: 13px;
  }

  .bc-price-plan__cell--plan strong {
    font-size: 14px;
  }

  .bc-price-plan__cell--included {
    font-size: 14px;
  }

  .bc-price-plan__cell--price strong {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .bc-price-plan {
    padding: 48px 0;
  }

  .bc-price-plan__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-price-plan__table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
  }

  .bc-price-plan__table {
    border-radius: 12px;
  }

  .bc-price-plan__cell--included {
    font-size: 13px;
  }

  .bc-price-plan__header {
    font-size: 14px;
    padding: 15px 12px;
  }

  .bc-price-plan__cell {
    padding: 15px 12px;
    font-size: 13px;
  }

  .bc-price-plan__period {
    font-size: 11px;
  }

  .bc-price-plan__cell--plan strong {
    font-size: 13px;
  }

  .bc-price-plan__cell--price strong {
    font-size: 20px;
  }

  .bc-price-plan__promo {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .bc-price-plan__button {
    padding: 12px 25px;
    font-size: 14px;
  }

  /*
  .bc-price-plan__bg-left,
  .bc-price-plan__bg-right {
    display: none;
  } */
}

@media (max-width: 575px) {
  .bc-price-plan__title {
    font-size: 32px;
  }

  /* .bc-price-plan__table {
    min-width: 500px;
  } */
  .bc-price-plan__cell--included {
    font-size: 12px;
  }

  .bc-price-plan__header {
    font-size: 12px;
    padding: 12px 8px;
  }

  .bc-price-plan__cell {
    padding: 12px 8px;
    font-size: 12px;
  }
}

/* ************ */
/* ******  Coach  ******
/* ************ */
.bc-coach__stats {
  display: flex;
  gap: 24px;
  margin: 40px 0;
  padding: 0;
  flex-wrap: wrap;
}

.bc-coach__stat-item {
  flex: 1;
  min-width: 150px;
}

.bc-coach__stat-number {
  font: 700 42px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.bc-coach__stat-label {
  font: 400 16px/1.5 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

@media (max-width: 991px) {
  .bc-coach__stats {
    gap: 20px;
  }

  .bc-coach__stat-number {
    font-size: 38px;
  }

  .bc-coach__stat-label {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .bc-coach__stats {
    gap: 16px;
    margin: 32px 0;
  }

  .bc-coach__stat-label {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-coach__stats {
    gap: 24px;
    margin: 24px 0;
  }
}

/* ************ */
/* ******  Comparison  ******
/* ************ */
.bc-comparison {
  position: relative;
  /* padding: 30px 0; */
  /* overflow: hidden; */
}

.bc-comparison__swiper {
  width: 100%;
  overflow: hidden;
}

.bc-comparison .swiper-wrapper {
  align-items: stretch;
}

.bc-comparison__slide {
  height: auto;
  width: 390px;
  box-sizing: border-box;
}

.bc-comparison__card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--gray-color);
  /* box-shadow: 0 8px 24px rgba(10, 12, 16, 0.12); */
}

.bc-comparison__card {
  aspect-ratio: 1.12 / 1;
}

.bc-comparison__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Spacing and responsive sizing */
.bc-comparison__swiper {
  padding: 0;
}

@media (max-width: 767px) {
  .bc-comparison__slide {
    width: 248px;
  }
}

/* ************ */
/* ******  Success Stories  ******
/* ************ */
.bc-success-stories {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}

.bc-success-stories__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--dark-color);
  text-align: center;
  margin: 0 0 40px 0;
}

.bc-success {
  position: relative;
  z-index: 5;
}

.bc-success__nav {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 500px;
  gap: 28px;
  z-index: 99;
}

.bc-success__swiper {
  border-radius: 30px;
  overflow: hidden;
}

.bc-success__slide {
  height: auto;
}

.bc-success__card {
  position: relative;
  z-index: 1;
  height: 100%;
  /* min-height: 380px; */
}

.bc-success__quote-icon {
  position: absolute;
  top: 45px;
  right: 460px;
  width: 96px;
  height: auto;
  z-index: -1;
  opacity: 0.1;
}

.bc-success__card::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(
    -90deg,
    rgb(20, 20, 22) 0%,
    rgba(20, 20, 22, 0) 100%
  );
  z-index: -1;
}

.bc-success__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.bc-success__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-success__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 12, 16, 0.55) 0%,
    rgba(10, 12, 16, 0.6) 36%,
    rgba(10, 12, 16, 0.2) 100%
  );
  pointer-events: none;
}

.bc-success__content {
  position: relative;
  z-index: 2;
  padding: 75px 80px 180px 20px;
  max-width: 520px;
  margin-left: auto;
  color: #fff;
}

.bc-success__quote {
  font: 500 18px/1.7 var(--global-font);
  margin: 0 0 16px 0;
}

.bc-success__author {
  font: 500 16px/1.4 var(--global-font);
  margin: 0;
}

.bc-success__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #b1b5c3;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.bc-success__nav-btn:hover {
  background-color: #fff;
}

.bc-success__thumbs {
  width: max-content;
  margin: 0;
}

.bc-success__thumbs .swiper-wrapper {
  gap: 13px;
}

.bc-success__thumb {
  width: 75px;
  height: 75px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.bc-success__thumb.swiper-slide-thumb-active {
  background-color: rgba(131, 199, 184, 0.2);
  border-color: #83c7b8;
}

.bc-success__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .bc-success-stories {
    padding: 40px 0 30px;
  }

  .bc-success-stories__title {
    font-size: 48px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .bc-success-stories {
    padding: 30px 0 24px;
  }

  .bc-success-stories__title {
    font-size: 42px;
  }

  .bc-success__card {
    /* min-height: 440px; */
  }

  .bc-success__content {
    max-width: 50%;
    padding: 75px 20px 180px 0;
  }

  .bc-success__quote-icon {
    left: 45%;
  }

  .bc-success__nav {
    max-width: 50%;
  }

  .bc-success__nav-btn {
    display: none;
  }

  .bc-success__thumb {
    height: 65px;
    width: 65px;
  }

  /* .bc-success__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 12, 16, 0.45) 0%,
      rgba(10, 12, 16, 0.7) 65%,
      rgba(10, 12, 16, 0.8) 100%
    );
  } */
}

@media (max-width: 767px) {
  .bc-success-stories__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .bc-success-stories {
    padding: 24px 0 16px;
  }

  .bc-success__content {
    max-width: none;
    padding: 212px 20px 120px;
  }

  .bc-success__quote {
    font-size: 16px;
  }

  .bc-success__nav {
    max-width: none;
    width: 100%;
    bottom: 20px;
    justify-content: center;
  }

  .bc-success__quote-icon {
    top: 32px;
    left: 0;
  }

  .bc-success__quote-icon,
  .bc-success__quote-icon svg {
    height: 57px;
    width: 57px;
  }
}

@media (max-width: 575px) {
  .bc-success-stories__title {
    font-size: 32px;
  }
}

/* ************ */
/* ******  Get Started  ******
/* ************ */
.bc-get-started {
  padding: 100px 0 0;
  position: relative;
}

.bc-get-started__inner {
  position: relative;
  border-radius: 30px;
  background: linear-gradient(
    -90deg,
    rgb(28, 78, 61) 0%,
    rgb(131, 199, 184) 55%,
    rgb(28, 78, 61) 100%
  );
  padding: 50px 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-get-started__badge {
  position: absolute;
  right: 0;
  top: -30px;
  transform: translateX(100%);
  z-index: 10;
  width: 100px;
  aspect-ratio: 1/1;
  z-index: -1;
}

.bc-get-started__badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-get-started__images {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  pointer-events: none;
  z-index: 1;
}

.bc-get-started__image-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.bc-get-started__image-group--left {
  align-items: flex-start;
}

.bc-get-started__image-group--right {
  align-items: flex-end;
}

.bc-get-started__image {
  width: 144px;
  aspect-ratio: 1.2/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.bc-get-started__image--overlap {
  margin-top: -40px;
  transform: translateX(80px) !important;
}

.bc-get-started__image-group--right .bc-get-started__image--overlap {
  transform: translateX(-80px) !important;
}

.bc-get-started__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-get-started__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--light-color);
  max-width: 450px;
  margin: 0 auto;
}

.bc-get-started__subtitle {
  font: 500 20px/1.5 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bc-get-started__title {
  font: 700 54px/1.15 var(--primary-font);
  color: var(--light-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.bc-get-started__dsc {
  font: 400 20px/1.5 var(--global-font);
  color: var(--light-color);
  margin: 0 0 40px 0;
}

.bc-get-started__actions {
  margin-top: 40px;
}

.bc-get-started__button,
.bc-get-started__button:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1280px) {
  /* .bc-get-started__badge {
    width: 150px;
    right: 25px;
    top: 25px;
  } */

  .bc-get-started__inner {
    padding: 50px 30px;
  }

  .bc-get-started__image {
    width: 100px;
  }
}

@media (max-width: 1023px) {
  .bc-get-started {
    padding: 80px 0 0;
  }

  .bc-get-started__inner {
    padding: 50px 30px;
  }

  .bc-get-started__title {
    font-size: 48px;
  }
  .bc-get-started__images {
    padding: 0 20px;
  }

  .bc-get-started__badge {
    top: -80px;
    transform: translateX(50%);
  }
  .bc-get-started__image--overlap {
    transform: translateX(50px) !important;
  }
  .bc-get-started__image-group--right .bc-get-started__image--overlap {
    transform: translateX(-50px) !important;
  }
  .bc-get-started__image--overlap {
    margin-left: -15px;
    margin-top: -15px;
  }

  .bc-get-started__image-group--right .bc-get-started__image--overlap {
    margin-right: -15px;
  }

  .bc-get-started__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .bc-get-started__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .bc-get-started {
    padding: 60px 0 0;
  }

  .bc-get-started__inner {
    padding: 60px 20px;
    background: linear-gradient(
      0deg,
      rgb(28, 78, 61) 0%,
      rgb(131, 199, 184) 81.73%,
      rgb(28, 78, 61) 100%
    );
    border-radius: 20px;
  }

  .bc-get-started__badge {
    transform: translateX(0);
    width: 72px;
  }

  .bc-get-started__images {
    display: none;
  }

  .bc-get-started__content {
    position: relative;
    z-index: 2;
  }

  .bc-get-started__title {
    font-size: 36px;
  }

  .bc-get-started__subtitle {
    font-size: 16px;
  }

  .bc-get-started__dsc {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .bc-get-started__actions {
    margin-top: 32px;
  }
}

@media (max-width: 575px) {
  .bc-get-started__title {
    font-size: 32px;
  }

  .bc-get-started__subtitle {
    font-size: 14px;
  }
}
