
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --bba-stroke: rgba(255,255,255,0.10);
  --bba-muted: rgba(255,255,255,0.62);
  --bba-red: #e03d2d;
}

/* =========================
   GLOBAL / RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: #080808;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080808 !important;
  color: #ffffff;
  overflow-x: hidden;
}

#bba-landing {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
  overflow-y: visible;
  background: #080808;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  isolation: isolate;
}

@supports not (overflow: clip) {
  #bba-landing {
    overflow-x: hidden;
  }
}

#bba-landing img {
  max-width: 100%;
  display: block;
}

/* =========================
   GRAYSCALE EFFECT
   ========================= */

/* All <img> tags default to grayscale with smooth hover restore */
#bba-landing img {
  filter: grayscale(1);
  transition: filter 0.4s ease;
}

#bba-landing img:hover {
  filter: grayscale(0);
}

/* Review screenshots and studio images always stay in full color */
.bba-reviews-premium img,
.bba-review-shot img,
.bba-studio__img {
  filter: grayscale(0) !important;
  transition: none !important;
}

/* Background-image elements: grayscale by default, restore on parent hover */
.bba-plan-card__bg,
.bba-trial-single__bg {
  filter: grayscale(1);
  transition: filter 0.4s ease;
}

.bba-plan-card:hover .bba-plan-card__bg,
.bba-trial-single:hover .bba-trial-single__bg {
  filter: grayscale(0);
}

#bba-landing a {
  text-decoration: none;
}

#bba-landing h1,
#bba-landing h2,
#bba-landing h3,
#bba-landing h4,
#bba-landing p {
  margin-top: 0;
}

#bba-landing h2 {
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.12),
    0 0 12px rgba(255, 255, 255, 0.06);
}

/* =========================
   HEADER
   ========================= */
.bba-header {
  position: fixed;
  top: 8px;
  left: 18px;
  right: 18px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--bba-stroke);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(10,10,10,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    top .35s ease,
    padding .35s ease,
    border-radius .35s ease,
    background .35s ease,
    opacity .25s ease,
    transform .25s ease;
  box-sizing: border-box;
}

.bba-header.is-scrolled {
  top: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(8,8,8,0.88);
}

.bba-header__brand {
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  flex-shrink: 0;
}

.bba-header__brand-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bba-header__brand-subtitle {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--bba-muted);
  text-transform: uppercase;
}

.bba-header__nav {
  display: flex;
  gap: 26px;
  font-family: 'Oswald', sans-serif;
  transition: opacity .25s ease, transform .25s ease;
}

.bba-header__nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.bba-header__nav a:hover {
  color: var(--bba-red);
}

.bba-header__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  margin-left: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .22s ease;
}

.bba-header__lang:hover {
  border-color: rgba(214,70,61,.55);
  color: #fff;
  background: rgba(214,70,61,.16);
}

.bba-header__phone {
  transition: opacity .25s ease, transform .25s ease;
}

.bba-header__phone a {
  color: var(--bba-red);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(194,53,43,.30);
  background: rgba(194,53,43,.06);
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.bba-header__phone a:hover {
  color: #fff;
  background: rgba(194,53,43,.95);
  border-color: rgba(194,53,43,1);
  box-shadow: 0 0 24px rgba(194,53,43,.28);
  transform: translateY(-1px);
}

.bba-header.is-scrolled .bba-header__nav,
.bba-header.is-scrolled .bba-header__phone {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* =========================
   HERO
   ========================= */
.hero-bba {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 130px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.78)),
    url(https://images.squarespace-cdn.com/content/v1/69345608afef506535e64c3f/6721359f-37f2-4811-ab94-bd9b16fa7acd/nicholas-jeffries-AXF3tTjgjpA-unsplash.jpg?format=3000w) center/cover no-repeat;
}

.hero-bba::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center top, rgba(255,255,255,.08), transparent 35%),
    radial-gradient(circle at top right, rgba(196,23,23,.10), transparent 25%);
  pointer-events: none;
}

.hero-bba::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 200px;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 100%, rgba(196,23,23,.18), transparent 45%),
    linear-gradient(
      180deg,
      rgba(8,8,8,0) 0%,
      rgba(10,10,10,.18) 18%,
      rgba(12,12,12,.42) 42%,
      rgba(14,14,14,.72) 68%,
      #111 100%
    );
}

.hero-bba__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding-top: 56px;
  transform: translateY(-28px);
}

.hero-bba__logo {
  display: block;
  width: 250px;
  margin: 44px auto 24px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
  animation: logoIntro 1.6s ease both;
  transform-origin: center;
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: translateY(-24px) scale(.96);
    filter: blur(8px) drop-shadow(0 10px 30px rgba(0,0,0,.45));
  }
  20% {
    opacity: .45;
    transform: translateX(-5px) translateY(-12px) scale(1.01);
  }
  32% {
    opacity: .7;
    transform: translateX(5px) translateY(-8px) scale(.99);
  }
  44% { transform: translateX(-3px) translateY(-4px); }
  56% { transform: translateX(3px) translateY(-2px); }
  72% { filter: blur(2px) drop-shadow(0 10px 30px rgba(0,0,0,.45)); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 10px 30px rgba(0,0,0,.45));
  }
}

.hero-bba__title {
  margin: 0 auto;
  color: #fff;
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 1.03;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 900px;
  text-shadow:
    0 0 12px rgba(100,38,30,0.35),
    0 0 30px rgba(100,38,30,0.2);
}

@keyframes titleFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bba__result {
  margin-top: 20px;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.2;
  animation: titleFade 0.9s ease both;
  animation-delay: .3s;
}

.hero-bba__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 18px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 15px 40px rgba(183,31,31,.35);
  transition: all 0.25s ease;
}

.hero-bba__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(183,31,31,.45);
  background: linear-gradient(180deg, #df5147 0%, #c7352d 100%);
}

.hero-bba__note {
  margin-top: 24px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: titleFade 0.9s ease both;
  animation-delay: .6s;
}

/* =========================
   RESULTS / TRIAL
   ========================= */
.bba-results-wrap {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.12), transparent 34%),
    radial-gradient(circle at bottom center, rgba(196,23,23,.08), transparent 32%),
    linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  padding: 108px 20px 20px;
  color: #fff;
}

.bba-results-container {
  max-width: 1180px;
  margin: 0 auto;
}

.bba-results-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.bba-results-intro,
.bba-results-list {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
}

.bba-results-intro {
  padding: 38px 34px 34px;
  min-height: 320px;
}

.bba-results-intro::before,
.bba-results-list::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.10), transparent 30%);
}

.bba-results-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.bba-results-title {
  margin: 0 0 16px;
  font-size: clamp(34px,4.6vw,62px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 620px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.bba-results-title span {
  color: #d6463d !important;
  -webkit-text-fill-color: #d6463d !important;
}

.bba-results-text {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.35;
  color: rgba(255,255,255,.82);
}

.bba-results-list {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.bba-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.bba-result-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow: 0 12px 26px rgba(183,31,31,.22);
  font-size: 26px;
}

.bba-results-list .bba-result-title {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.bba-result-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,.68);
}
/* =========================
   FLOW BETWEEN TRIAL & MEMBERSHIPS
   ========================= */
.bba-flow {
  position: relative;
  padding: 34px 6px 8px;
}

.bba-flow__inner {
  position: relative;
  padding: 26px 4px 10px;
}

.bba-flow__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,70,61,.9), rgba(214,70,61,0));
}

.bba-flow__kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.56);
}

.bba-flow__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
}

.bba-flow__title span {
  color: #d6463d;
}

.bba-flow__text {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,.72);
}

@media (max-width: 768px) {
  .bba-flow {
    padding: 24px 2px 4px;
  }

  .bba-flow__inner {
    padding: 20px 2px 6px;
  }

  .bba-flow__title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .bba-flow__text {
    font-size: 16px;
  }
}
/* =========================
   TRIAL SINGLE BLOCK
   ========================= */
.bba-trial-single {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
  background: #000;
}

.bba-trial-single::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.12), transparent 30%);
  z-index: 1;
}

.bba-trial-single__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/69345608afef506535e64c3f/b2f09aa5-2ab8-4ff5-beec-056145cf0129/BAR_8972-Edit.jpg?format=1500w');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.bba-trial-single__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 25%, rgba(0,0,0,.72) 100%);
}

.bba-trial-single__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 560px;
}

.bba-trial-single__kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bba-trial-single__title {
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  max-width: 720px;
}

.bba-trial-single__title span {
  color: #ff5a4f;
}

.bba-trial-single__text {
  margin: 0;
  max-width: 720px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.22;
  color: rgba(255,255,255,.90);
}

.bba-trial-single__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-width: 260px;
  padding: 18px 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(183,31,31,.30);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.bba-trial-single__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #df5147 0%, #c7352d 100%);
  box-shadow: 0 22px 52px rgba(183,31,31,.36);
}

@media (max-width: 900px) {
  .bba-trial-single {
    min-height: 480px;
  }

  .bba-trial-single__content {
    min-height: 480px;
    padding: 34px 24px;
  }

  .bba-trial-single__title {
    font-size: clamp(38px, 11vw, 64px);
  }

  .bba-trial-single__text {
    font-size: 18px;
    line-height: 1.3;
  }

  .bba-trial-single__btn {
    width: 100%;
    max-width: 320px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .bba-trial-single {
    min-height: 420px;
    border-radius: 24px;
  }

  .bba-trial-single__content {
    min-height: 420px;
    padding: 26px 18px;
  }

  .bba-trial-single__kicker {
    font-size: 11px;
    padding: 10px 14px;
  }

  .bba-trial-single__title {
    font-size: clamp(34px, 12vw, 54px);
    line-height: .95;
  }

  .bba-trial-single__text {
    font-size: 17px;
  }

  .bba-trial-single__btn {
    min-width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
  }
}

/* =========================
   MEMBERSHIPS
   ========================= */
.bba-memberships {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.08), transparent 24%),
    linear-gradient(180deg, #080808 0%, #111 100%);
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

.bba-memberships__container {
  max-width: 1240px;
  margin: 0 auto;
}

.bba-memberships__hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 36px;
}

.bba-memberships__intro,
.bba-memberships__side {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
}

.bba-memberships__intro {
  padding: 38px 34px 34px;
}

.bba-memberships__intro::before,
.bba-memberships__side::before,
.bba-plan-card::before,
.bba-artist::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.11), transparent 28%);
}

.bba-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.bba-memberships__title {
  margin: 0 0 18px;
  font-size: clamp(38px,5.4vw,82px);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.bba-memberships__title span {
  color: #d6463d;
}

.bba-memberships__lead {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.32;
  color: rgba(255,255,255,.84);
}

.bba-memberships__side {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.bba-side-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}

.bba-side-item__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow: 0 12px 26px rgba(183,31,31,.22);
}

.bba-side-item__title {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.bba-side-item__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
}

.bba-section {
  margin-top: 46px;
}

.bba-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.bba-section__title {
  margin: 0;
  font-size: clamp(30px,3.8vw,56px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.bba-section__title span {
  color: #d6463d;
}

.bba-section__desc {
  margin: 0;
  max-width: 700px;
  font-size: 17px;
  line-height: 1.35;
  color: rgba(255,255,255,.74);
}

.bba-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bba-plan-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.bba-plan-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 16px 44px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,255,255,.02);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.bba-plan-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0,0,0,.62),
    0 0 0 1px rgba(196,23,23,.18);
  border-color: rgba(196,23,23,.22);
}

.bba-plan-card--featured {
  box-shadow:
    0 16px 44px rgba(0,0,0,.52),
    0 0 0 1px rgba(196,23,23,.30),
    0 0 28px rgba(196,23,23,.10);
}

.bba-plan-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .34s ease;
}

.bba-plan-card:hover .bba-plan-card__bg {
  transform: scale(1.05);
}

.bba-plan-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.12) 0%,
      rgba(0,0,0,.28) 24%,
      rgba(0,0,0,.66) 58%,
      rgba(0,0,0,.93) 100%
    );
}

.bba-plan-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 9px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(183,31,31,.22);
}

.bba-plan-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.bba-plan-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bba-plan-card__title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
}

.bba-plan-card__meta {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.36;
  color: rgba(255,255,255,.88);
  max-width: 95%;
}

.bba-plan-card__price {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}

.bba-plan-card__price span {
  color: #ff5a4f;
}

.bba-plan-card__unit {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,.68);
  letter-spacing: .02em;
}

.bba-plan-card__unit strong {
  color: #fff;
  font-weight: 600;
}

.bba-plan-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(183,31,31,.22);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.bba-plan-card__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #df5147 0%, #c7352d 100%);
  box-shadow: 0 18px 38px rgba(183,31,31,.28);
}

.bba-artist {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(196,23,23,.16) 0%, rgba(255,255,255,.02) 35%, rgba(255,255,255,.01) 100%);
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
}

.bba-artist__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 24px;
  align-items: center;
  padding: 34px 32px;
}

.bba-artist__title {
  margin: 0 0 14px;
  font-size: clamp(32px,4.2vw,60px);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
}

.bba-artist__title span {
  color: #d6463d;
}

.bba-artist__text {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.38;
  color: rgba(255,255,255,.84);
}

.bba-artist__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.bba-artist__point {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.3;
}

.bba-artist__side {
  padding: 24px;
  border-radius: 24px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bba-artist__side-price {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.bba-artist__side-text {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}

.bba-artist__side-note {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.38;
  color: rgba(255,255,255,.72);
}

.bba-artist__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 260px;
  max-width: 100%;
  padding: 15px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  box-sizing: border-box;
}

.bba-divider {
  height: 1px;
  margin: 18px 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
/* =========================
   GIFT CERTIFICATES
   ========================= */
.bba-gifts {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 38px 20px 30px;
  color: #fff;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.08), transparent 26%),
    radial-gradient(circle at bottom center, rgba(196,23,23,.06), transparent 30%),
    linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}

.bba-gifts__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.bba-gifts__hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 30px;
}

.bba-gifts__intro,
.bba-gifts__side,
.bba-gift-card,
.bba-gifts__footer {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
}

.bba-gifts__intro::before,
.bba-gifts__side::before,
.bba-gift-card::before,
.bba-gifts__footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.11), transparent 28%);
}

.bba-gifts__intro {
  padding: 36px 32px 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(214,70,61,.16), transparent 24%),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.04), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.bba-gifts__intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,70,61,.95), rgba(214,70,61,0));
  pointer-events: none;
}

.bba-gifts__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(214,70,61,.10);
  border: 1px solid rgba(214,70,61,.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.bba-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.bba-gifts__title {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 76px);
  line-height: .94;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 18px rgba(214,70,61,.10),
    0 8px 30px rgba(0,0,0,.18);
}

.bba-gifts__title span {
  color: #d6463d;
}

.bba-gifts__lead {
  margin: 0;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.36;
  color: rgba(255,255,255,.86);
}

.bba-gifts__side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.bba-side-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}

.bba-side-item__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow: 0 12px 26px rgba(183,31,31,.22);
}

.bba-side-item__title {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.bba-side-item__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
}
/* =========================
   COURSE FULL
   ========================= */

.bba-course-full {
  position: relative;
  padding: 50px 0px 30px;
 
}

.bba-course-full__container {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  max-width: 1680px;
  margin: 0 auto;
  padding: 26px 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.07);

  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(480px, 1fr);
  gap: 26px;
  align-items: stretch;

    
  box-shadow:
    0 28px 80px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.bba-course-full__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("BBA_course_bg_ready.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  filter: grayscale(1) brightness(.99) saturate(.92);
  transition: filter 0.4s ease;
}

.bba-course-full:hover .bba-course-full__bg {
  filter: grayscale(0) brightness(.99) saturate(.92);
}

.bba-course-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 85%, rgba(194,53,43,.16), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(81,70,255,.08), transparent 24%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.36) 38%, rgba(0,0,0,.62) 100%);
}

.bba-course-full__left,
.bba-course-full__right {
  position: relative;
  z-index: 2;
}

.bba-course-full__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px;
  min-width: 0;
}

.bba-course-full__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
  font-size: clamp(14px, 1.1vw, 22px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.bba-course-full__title {
  margin: 0 0 16px;
  max-width: 620px;
  font-size: clamp(56px, 5vw, 92px);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #fff;
}

.bba-course-full__title span {
  color: #d85a4f;
}

.bba-course-full__text {
  margin: 0 0 20px;
  max-width: 700px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.42;
  color: rgba(255,255,255,.92);
}

.bba-course-full__price {
  margin-bottom: 22px;
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #e05d51;
}

.bba-course-full__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  min-height: 72px;
  padding: 18px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #d85a4f 0%, #bf3a31 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(18px, 1.35vw, 28px);
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow:
    0 18px 38px rgba(194,53,43,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    filter .24s ease;
}

.bba-course-full__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(194,53,43,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
  filter: brightness(1.04);
}

.bba-course-full__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.bba-course-full__card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 120px;
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.bba-course-full__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(180deg, #d85a4f 0%, #b93a31 100%);
  box-shadow:
    0 14px 28px rgba(194,53,43,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.bba-icon-monitor {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bba-course-full__icon .bba-icon-monitor {
  width: 30px;
  height: 30px;
}

.bba-course-full__card-content {
  min-width: 0;
}

.bba-course-full__card-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.bba-course-full__card-text {
  margin: 0;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.38;
  color: rgba(255,255,255,.82);
}

/* TABLET */
@media (max-width: 1200px) {
  .bba-course-full__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bba-course-full__left {
    padding: 4px 2px 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .bba-course-full {
    padding: 18px 12px 48px;
  }

  .bba-course-full__container {
    padding: 18px 16px 20px;
    border-radius: 22px;
    gap: 16px;
  }

  .bba-course-full__badge {
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .bba-course-full__title {
    margin-bottom: 14px;
    font-size: clamp(40px, 13vw, 62px);
    line-height: 1.04;
  }

  .bba-course-full__text {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.42;
  }

  .bba-course-full__price {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .bba-course-full__btn {
    width: 100%;
    min-width: 100%;
    min-height: 62px;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 20px;
  }

  .bba-course-full__right {
    gap: 12px;
  }

  .bba-course-full__card {
    min-height: 0;
    padding: 16px 14px;
    gap: 14px;
    border-radius: 18px;
    align-items: flex-start;
  }

  .bba-course-full__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 22px;
  }

  .bba-course-full__card-title {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .bba-course-full__card-text {
    font-size: 15px;
  }
}
/* =========================
   GIFT GRID
   ========================= */
.bba-gifts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.bba-gift-card {
  position: relative;
  min-height: 560px;
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 48px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.02);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
  isolation: isolate;
}

.bba-gift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,70,61,.26);
  box-shadow:
    0 24px 60px rgba(0,0,0,.56),
    0 0 0 1px rgba(214,70,61,.18),
    0 0 24px rgba(214,70,61,.08);
}

.bba-gift-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform .4s ease, filter 0.4s ease;
  filter: grayscale(1) saturate(.95) contrast(1.02) brightness(.84);
}

.bba-gift-card:hover .bba-gift-card__bg {
  transform: scale(1.06);
  filter: grayscale(0) saturate(.95) contrast(1.02) brightness(.84);
}

.bba-gift-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.06) 0%, rgba(8,8,8,.14) 35%, rgba(8,8,8,.72) 100%);
  z-index: 1;
}

.bba-gift-card__paper {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 48%;
  min-height: 250px;
  border-radius: 22px;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(180deg, rgba(20,20,20,.22), rgba(12,12,12,.74));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -30px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bba-gift-card__paper::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}

.bba-gift-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 82% 16%, rgba(214,70,61,.10), transparent 22%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.08), transparent 16%);
  mix-blend-mode: screen;
  opacity: .82;
}

.bba-gift-card__ribbon {
  position: absolute;
  top: 20px;
  left: -44px;
  z-index: 4;
  width: 220px;
  text-align: center;
  padding: 12px 0;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(-35deg);
  box-shadow: 0 12px 26px rgba(183,31,31,.28);
}

.bba-gift-card__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.bba-gift-card__title {
  margin: 0 0 14px;
  padding-top: 0px;
  font-size: 26px;
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.24);
}


.bba-gift-card__subtitle {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255,255,255,.92);
  max-width: 92%;
}

.bba-gift-card__divider {
  width: 100%;
  height: 1px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, rgba(214,70,61,.85), rgba(255,255,255,.10), rgba(255,255,255,0));
}

.bba-gift-card__features {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.bba-gift-card__feature {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255,255,255,.88);
}

.bba-gift-card__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 14px 32px rgba(183,31,31,.22);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
  text-decoration: none;
}

.bba-gift-card__buy:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #df5147 0%, #c7352d 100%);
  box-shadow: 0 18px 38px rgba(183,31,31,.28);
}



/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .bba-gifts__hero,
  .bba-gifts__footer-grid {
    grid-template-columns: 1fr;
  }

  .bba-gifts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bba-gifts__footer-title {
    font-size: clamp(22px, 8vw, 34px);
    line-height: 1.1;
  }

  .bba-gifts__footer-text {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .bba-gifts {
    padding: 26px 10px 70px;
  }

  .bba-gifts__intro,
  .bba-gifts__side,
  .bba-gifts__footer {
    border-radius: 24px;
  }

  .bba-gifts__intro {
    padding: 24px 18px 20px;
  }

  .bba-gifts__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bba-gift-card {
    max-width: 100%;
    min-height: 520px;
    border-radius: 24px;
  }

  .bba-gift-card__paper {
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 44%;
    min-height: 220px;
    border-radius: 18px;
  }

  .bba-gift-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .bba-gift-card__title {
    font-size: 24px;
    padding-top: 8px;
  }

  .bba-gifts__footer {
    padding: 22px 18px;
  }
}


/* =========================
   ABOUT / STUDIO
   ========================= */
.bba-studio {
  position: relative;
  z-index: 2;
  padding: 88px 20px 80px;
  color: #fff;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.10), transparent 30%),
    radial-gradient(circle at bottom center, rgba(196,23,23,.08), transparent 35%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  overflow: hidden;
}

.bba-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(196,23,23,.06), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(196,23,23,.05), transparent 30%);
}

.bba-studio__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bba-studio__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.bba-studio__visual {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
  background: #000;
}

.bba-studio__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.02);
}

.bba-studio__img--one {
  animation: bbaStudioFloatOne 14s ease-in-out infinite alternate;
}

.bba-studio__img--two {
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 8% 100%);
  opacity: .88;
  animation: bbaStudioFloatTwo 16s ease-in-out infinite alternate;
}

.bba-studio__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.12), transparent 24%),
    radial-gradient(circle at 80% 75%, rgba(196,23,23,.12), transparent 28%);
}

.bba-studio__divider {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 49%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.35), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,.12);
  transform: rotate(6deg);
}

.bba-studio__content {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bba-studio__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.10), transparent 28%);
}

.bba-studio__kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

.bba-studio__title {
  margin: 0 0 16px;
  font-size: clamp(34px,4vw,60px);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
}

.bba-studio__title span {
  color: #d6463d;
}

.bba-studio__text {
  margin: 0 0 16px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.38;
  color: rgba(255,255,255,.82);
}

.bba-studio__names {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bba-studio__name {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

.bba-studio__bottom {
  margin-top: 28px;
}

.bba-studio__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(183,31,31,.25);
}

@keyframes bbaStudioFloatOne {
  0% { transform: scale(1.04) translate3d(0,0,0); }
  50% { transform: scale(1.08) translate3d(-10px,-8px,0); }
  100% { transform: scale(1.05) translate3d(6px,10px,0); }
}

@keyframes bbaStudioFloatTwo {
  0% { transform: scale(1.05) translate3d(0,0,0); }
  50% { transform: scale(1.10) translate3d(10px,6px,0); }
  100% { transform: scale(1.06) translate3d(-8px,-10px,0); }
}

/* =========================
   FINAL CTA + MAP
   ========================= */
.bba-visit {
  position: relative;
  z-index: 2;
  padding: 30px 20px 40px;
  color: #fff;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.10), transparent 30%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  overflow: hidden;
}

.bba-visit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(196,23,23,.06), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.03), transparent 26%);
}

.bba-visit__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bba-visit__card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 38px 34px 34px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02);
}

.bba-visit__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(196,23,23,.12), transparent 30%);
}

.bba-visit__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.bba-visit__title {
  margin: 0 0 14px;
  font-size: clamp(34px,4.8vw,72px);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
}

.bba-visit__title span {
  color: #d6463d;
}

.bba-visit__text {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255,255,255,.80);
}

.bba-visit__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 86px;
  padding: 22px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 20px 50px rgba(183,31,31,.30);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.bba-visit__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(183,31,31,.38);
  background: linear-gradient(180deg, #df5147 0%, #c7352d 100%);
}

.bba-visit__map-wrap {
  margin-top: 28px;
}

.bba-visit__map-title {
  margin: 0 0 14px;
  font-size: clamp(26px,3vw,40px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.bba-visit__map-title span {
  color: #d6463d;
}

.bba-visit__map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  box-shadow:
    0 18px 48px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.02);
  min-height: 460px;
}

.bba-visit__map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(.88);
}

.bba-visit__map-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.54);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =========================
   FOOTER
   ========================= */

.bba-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 34px;
  background:
    linear-gradient(180deg, #050505 0%, #020202 100%);
  border-top: 1px solid rgba(255,255,255,.05);
}

.bba-footer__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 92vw);
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(194,53,43,.14) 0%, rgba(194,53,43,.07) 26%, rgba(194,53,43,0) 68%);
  filter: blur(36px);
  opacity: .9;
}

.bba-footer__container {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: 0 auto;
}

.bba-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr .9fr;
  gap: 64px;
  align-items: start;
}

.bba-footer__col {
  min-width: 0;
}

.bba-footer__logo-main {
  font-size: clamp(38px, 2.6vw, 58px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.bba-footer__logo-sub {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.56);
}

.bba-footer__desc {
  margin: 42px 0 0;
  max-width: 520px;
  font-size: clamp(20px, 1.2vw, 28px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.bba-footer__title {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.bba-footer__item {
  margin-bottom: 30px;
}

.bba-footer__link,
.bba-footer__text {
  font-size: clamp(22px, 1.35vw, 32px);
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}

.bba-footer__link {
  text-decoration: none;
  transition:
    color .22s ease,
    text-shadow .22s ease,
    transform .22s ease;
}

.bba-footer__link:hover {
  color: #ff6a5f;
  text-shadow: 0 0 18px rgba(194,53,43,.18);
}

.bba-footer__bottom {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  font-size: clamp(18px, 1.05vw, 24px);
  line-height: 1.4;
  font-weight: 600;
  color: rgba(255,255,255,.42);
}

/* TABLET */
@media (max-width: 1100px) {
  .bba-footer {
    padding: 56px 18px 28px;
  }

  .bba-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bba-footer__desc {
    margin-top: 28px;
    max-width: 700px;
  }

  .bba-footer__title {
    margin-bottom: 22px;
  }

  .bba-footer__item {
    margin-bottom: 18px;
  }

  .bba-footer__bottom {
    margin-top: 32px;
    padding-top: 22px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .bba-footer {
    padding: 46px 14px 24px;
  }

  .bba-footer__glow {
    top: -90px;
    height: 180px;
    opacity: .8;
  }

  .bba-footer__grid {
    gap: 28px;
  }

  .bba-footer__logo-main {
    font-size: 30px;
  }

  .bba-footer__logo-sub {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: .28em;
  }

  .bba-footer__desc {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.5;
  }

  .bba-footer__title {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: .22em;
  }

  .bba-footer__link,
  .bba-footer__text {
    font-size: 18px;
    line-height: 1.4;
  }

  .bba-footer__item {
    margin-bottom: 14px;
  }

  .bba-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 15px;
  }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1100px) {
  .bba-plan-grid,
  .bba-plan-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-memberships__hero,
  .bba-artist__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .bba-header__nav {
    display: none;
  }

  .bba-results-top,
  .bba-trial-grid,
  .bba-studio__grid {
    grid-template-columns: 1fr;
  }

  .bba-studio__content {
    padding: 28px 22px;
  }

  .bba-trial-main,
  .bba-trial-side {
    min-height: auto;
  }

  .bba-trial-main__content,
  .bba-trial-side__inner {
    padding: 28px 22px;
  }

  .bba-trial-main__title,
  .bba-trial-side__title {
    font-size: clamp(34px, 10vw, 54px);
  }

  .bba-trial-line {
    flex-direction: column;
    gap: 4px;
    font-size: 17px;
  }

  .bba-trial-line strong {
    white-space: normal;
  }
}

@media (max-width: 800px) {
  .bba-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .bba-header {
    top: 8px;
    left: 8px;
    right: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero-bba {
    min-height: auto;
    padding: 0 10px 56px;
    background-position: center center;
    background-size: cover;
  }

  .hero-bba__inner {
    width: 100%;
    max-width: 100%;
    padding-top: 88px;
    transform: none;
  }

  .hero-bba__logo {
    width: 150px;
    margin: 8px auto 16px;
  }

  .hero-bba__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(32px, 10vw, 52px);
    line-height: 0.98;
  }

  .hero-bba__result {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-bba__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 62px;
    margin-top: 18px;
    padding: 16px 18px;
    font-size: 18px;
    border-radius: 16px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    opacity: 1;
    filter: none;
  }

  .hero-bba__note {
    display: none;
  }

  .bba-results-wrap,
  .bba-memberships,
  .bba-studio,
  .bba-visit,
  .bba-footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bba-visit {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .bba-visit__card {
    padding: 24px 16px 20px;
    border-radius: 22px;
  }

  .bba-visit__cta {
    min-height: 66px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .bba-visit__map-frame,
  .bba-visit__map-frame iframe {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width: 700px) {
  .bba-memberships {
    padding: 70px 16px 60px;
  }

  .bba-plan-grid,
  .bba-plan-grid--3 {
    grid-template-columns: 1fr;
  }

  .bba-section__head {
    display: block;
  }

  .bba-plan-card {
    min-height: 470px;
  }

  .bba-artist__list {
    grid-template-columns: 1fr;
  }
}
  /* SAFE SEO HELPERS */
.bba-seo-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* =========================
   DESKTOP HEADER FIX
   ========================= */

.bba-burger {
  display: none !important;
}

.bba-mobile-menu {
  display: none !important;
}

@media (max-width: 900px) {
  .bba-burger {
    display: inline-flex !important;
  }

  .bba-mobile-menu {
    display: block !important;
  }
}

/* =========================================
   FINAL MOBILE HEADER / MENU / HERO FIX
   ========================================= */

@media (max-width: 900px) {
  .bba-header__nav,
  .bba-header__phone {
    display: none !important;
  }

  .bba-burger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    margin-left: auto !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    cursor: pointer !important;
    z-index: 100001 !important;
  }

  .bba-burger span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #fff !important;
    transition: transform .25s ease, opacity .25s ease !important;
  }

  .bba-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .bba-burger.is-active span:nth-child(2) {
    opacity: 0 !important;
  }

  .bba-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .bba-header {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 10px 12px !important;
    gap: 12px !important;
    border-radius: 14px !important;
  }

  .bba-header__brand-title {
    font-size: 14px !important;
  }

  .bba-header__brand-subtitle {
    font-size: 9px !important;
    letter-spacing: .24em !important;
  }

  .bba-mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 100000 !important;
    background: rgba(5,5,5,0.72) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .25s ease, visibility .25s ease !important;
  }

  .bba-mobile-menu[aria-hidden="false"] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .bba-mobile-menu__panel {
    position: absolute !important;
    top: 78px !important;
    left: 10px !important;
    right: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 18px !important;
    background: rgba(10,10,10,0.94) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35) !important;
    transform: translateY(-8px) !important;
    transition: transform .25s ease !important;
  }

  .bba-mobile-menu[aria-hidden="false"] .bba-mobile-menu__panel {
    transform: translateY(0) !important;
  }

  .bba-mobile-menu__link,
  .bba-mobile-menu__phone {
    display: block !important;
    padding: 14px 14px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }

  .bba-mobile-menu__select {
    position: relative !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(255,255,255,0.03) !important;
    overflow: visible !important;
  }

  .bba-mobile-menu__select > summary {
    list-style: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 52px !important;
    padding: 14px 14px !important;
    color: #fff !important;
    font-size: 14px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }

  .bba-mobile-menu__select > summary::-webkit-details-marker {
    display: none !important;
  }

  .bba-mobile-menu__select > summary::after {
    content: "▾" !important;
    font-size: 12px !important;
    opacity: .85 !important;
    transition: transform .2s ease !important;
  }

  .bba-mobile-menu__select[open] > summary::after {
    transform: rotate(180deg) !important;
  }

  .bba-mobile-menu__select-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(100% + 8px) !important;
    z-index: 4 !important;
    padding: 8px !important;
    display: grid !important;
    gap: 6px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(8,8,10,.98)) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.42) !important;
    max-height: min(44vh, 320px) !important;
    overflow: auto !important;
  }

  .bba-mobile-menu__select-option {
    position: relative !important;
    display: block !important;
    padding: 12px 12px 12px 38px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: rgba(0,0,0,0.22) !important;
    color: rgba(255,255,255,0.96) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
  }

  .bba-mobile-menu__select-option::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 6px !important;
    background: rgba(255,255,255,.08) !important;
    display: grid !important;
    place-items: center !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .bba-mobile-menu__select-option:nth-child(1)::before { content: "\1F399" !important; }
  .bba-mobile-menu__select-option:nth-child(2)::before { content: "\1F3B8" !important; }
  .bba-mobile-menu__select-option:nth-child(3)::before { content: "\1F3B9" !important; }
  .bba-mobile-menu__select-option:nth-child(4)::before { content: "\1F941" !important; }
  .bba-mobile-menu__select-option:nth-child(5)::before { content: "\1F4BB" !important; }

  .bba-mobile-menu__phone {
    color: #ff6a5f !important;
    background: rgba(214,70,61,0.08) !important;
    border-color: rgba(214,70,61,0.18) !important;
  }

  .bba-mobile-menu__lang {
    font-weight: 700 !important;
  }

  .hero-bba {
    min-height: auto !important;
    padding: 110px 16px 70px !important;
  }

  .hero-bba__inner {
    padding-top: 0 !important;
    transform: none !important;
  }

  .hero-bba__logo {
    width: 150px !important;
    margin: 8px auto 16px !important;
  }

  .hero-bba__title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(32px, 10vw, 52px) !important;
    line-height: 0.98 !important;
  }

  .hero-bba__result {
    margin-top: 14px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .hero-bba__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 62px !important;
    margin-top: 18px !important;
    padding: 16px 18px !important;
    font-size: 18px !important;
    border-radius: 16px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-bba__note {
    display: none !important;
  }

  .bba-results-wrap,
  .bba-memberships,
  .bba-studio,
  .bba-visit,
  .bba-footer {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .bba-visit {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
  }

  .bba-visit__card {
    padding: 24px 16px 20px !important;
    border-radius: 22px !important;
  }

  .bba-visit__cta {
    min-height: 66px !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
  }

  .bba-visit__map-frame,
  .bba-visit__map-frame iframe {
    min-height: 300px !important;
    height: 300px !important;
  }
}

@media (max-width: 700px) {
  .bba-memberships {
    padding: 70px 16px 60px !important;
  }

  .bba-plan-grid,
  .bba-plan-grid--3 {
    grid-template-columns: 1fr !important;
  }

  .bba-section__head {
    display: block !important;
  }

  .bba-plan-card {
    min-height: 470px !important;
  }

  .bba-artist__list {
    grid-template-columns: 1fr !important;
  }
}
/* =========================
   REVIEWS FIX
   ========================= */

#bba-landing {
  isolation: auto !important;
}

.bba-header {
  position: fixed !important;
  z-index: 2147483647 !important;
}

.bba-reviews-premium {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.bba-reviews-premium__container {
  position: relative;
  overflow: visible;
}

.bba-reviews-premium__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  padding: 18px 2px 14px;
  margin-top: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bba-reviews-premium__viewport::-webkit-scrollbar {
  display: none;
}

.bba-reviews-premium__track {
  display: flex;
  gap: 18px;
  overflow: visible;
  padding: 4px 0 10px;
}

.bba-review-shot {
  transform: translateY(0);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.bba-review-shot:hover {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .bba-reviews-premium__container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  .bba-reviews-premium__viewport {
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
    scrollbar-width: none;
  }

  .bba-reviews-premium__viewport::-webkit-scrollbar {
    display: none;
  }

  .bba-reviews-premium__track {
    display: flex;
    gap: 14px;
    width: max-content;
  }

  .bba-review-shot {
    flex: 0 0 calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .bba-review-shot img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* =========================
   SELECT COMPACT FIX
   ========================= */

.bba-select__menu {
  max-height: 220px;
  overflow-y: auto;
   padding: 6px;
    border-radius: 16px;
}

.bba-select__menu::-webkit-scrollbar {
  width: 6px;
}

.bba-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}

.bba-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.18);
}

.bba-select__option {
  font-size: 14px;
  min-height: 42px;
   padding: 8px 12px;
    border-radius: 12px;
}

.bba-select__icon {
  font-size: 16px;
}

.bba-select__soon {
  font-size: 9px;
  padding: 4px 8px;
}
/* =========================
   REVIEWS CARD SIZE FIX
   ========================= */

.bba-reviews-premium__viewport {
  overflow-x: auto;
  overflow-y: visible;
}

.bba-reviews-premium__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
}

.bba-review-shot {
  flex: 0 0 320px;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  border-radius: 22px;
  overflow: hidden;
}

.bba-review-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .bba-review-shot {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
}
/* =========================
   REVIEWS HEADER FIX
   ========================= */

.bba-reviews-premium {
  position: relative;
  padding: 90px 20px 70px;
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.10), transparent 30%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: #fff;
}

.bba-reviews-premium__container {
  max-width: 1200px;
  margin: 0 auto;
}

.bba-reviews-premium__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 10px 30px rgba(0,0,0,.16);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}

.bba-reviews-premium__title {
  margin: 0 0 18px;
  max-width: 1100px;
  font-size: clamp(52px, 7vw, 112px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
}

.bba-reviews-premium__title span {
  color: #d95a4e;
}

.bba-reviews-premium__text {
  margin: 0 0 26px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.35;
  color: rgba(255,255,255,.84);
}

.bba-reviews-premium__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.bba-reviews-premium__stars {
  color: #f2bf4c;
  letter-spacing: .12em;
}

.bba-reviews-premium__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.bba-reviews-premium__head {
  flex: 1 1 auto;
  min-width: 0;
}

.bba-reviews-premium__nav {
  width: 52px;
  height: 52px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    rgba(20,20,20,0.7);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: #fff;
  font-size: 20px;

  cursor: pointer;

  transition: all .25s ease;
}
.bba-reviews-premium__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}


.bba-reviews-premium__nav:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(30,30,30,0.9);

  border-color: rgba(255,255,255,0.14);

  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .bba-reviews-premium__controls {
    margin-top: 18px;
    gap: 14px;
  }

  .bba-reviews-premium__top {
    display: block;
    margin-bottom: 18px;
  }

  .bba-reviews-premium__kicker {
    min-height: 44px;
    padding: 0 16px;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .bba-reviews-premium__title {
    font-size: clamp(38px, 12vw, 64px);
    line-height: .94;
    margin-bottom: 14px;
  }

  .bba-reviews-premium__text {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .bba-reviews-premium__meta {
    margin-bottom: 20px;
    font-size: 15px;
    gap: 10px;
  }

  .bba-reviews-premium__arrow {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 28px;
  }
}
/* =========================
   CHAT FIX
   ========================= */

.bba-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.bba-chat__button {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow:
    0 16px 40px rgba(183,31,31,.35),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.bba-chat__button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(183,31,31,.45),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.bba-chat__panel {
  width: 320px;
  max-height: 420px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.bba-chat.is-open .bba-chat__panel {
  display: flex;
}

.bba-chat__header {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bba-chat__messages {
  padding: 14px;
  overflow-y: auto;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.bba-chat__input {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.06);
}

.bba-chat__input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 14px;
  color: #fff;
  outline: none;
}

.bba-chat__input button {
  padding: 0 16px;
  border: none;
  background: transparent;
  color: #ff6a5f;
  cursor: pointer;
}
/* =========================
   HEADER NAV HOVER FIX
   ========================= */

.bba-header__nav a,
.bba-header__nav a:link,
.bba-header__nav a:visited {
  color: rgba(255,255,255,.88) !important;
  -webkit-text-fill-color: rgba(255,255,255,.88) !important;
  transition: color .22s ease, -webkit-text-fill-color .22s ease, opacity .22s ease;
}

.bba-header__nav a:hover,
.bba-header__nav a:focus-visible {
  color: #d6463d !important;
  -webkit-text-fill-color: #d6463d !important;
}

.bba-header__nav a:active {
  color: #d6463d !important;
  -webkit-text-fill-color: #d6463d !important;
}

/* =========================
   LEAD MODAL + CUSTOM SELECT FINAL
   ========================= */

#bba-landing {
  isolation: auto !important;
}

.bba-lead-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999999;
}

.bba-lead-modal.is-open {
  display: flex;
}

.bba-lead-modal__content {
  width: min(640px, 92vw);
  max-height: 88vh;
  padding: 26px;
  border-radius: 20px;
}

.bba-lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.bba-lead-modal__close:hover {
  background: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

.bba-lead-modal__offer {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600;
}

.bba-lead-modal__content,
.bba-lead-modal__title,
.bba-lead-form,
.bba-lead-form input,
.bba-lead-form textarea,
.bba-select__trigger,
.bba-select__option,
.submit-btn,
.form-message {
  font-family: 'Oswald', sans-serif !important;
}

.bba-lead-modal__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Oswald', sans-serif !important;
  font-weight: 700;
}

.bba-lead-form {
  display: flex;
  flex-direction: column;
}

.bba-lead-form input,
.bba-lead-form textarea {
  width: 100%;
  margin-bottom: 16px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 18px;
  font-size: 16px;
  outline: none;
  transition: all .2s ease;
  font-family: 'Oswald', sans-serif;
  box-sizing: border-box;
}

.bba-lead-form input {
  height: 58px;
  padding: 0 18px;
}

.bba-lead-form textarea {
  min-height: 120px;
  padding: 16px 18px;
  resize: none;
  line-height: 1.2;
}

.bba-lead-form input::placeholder,
.bba-lead-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.bba-lead-form input:focus,
.bba-lead-form textarea:focus {
  border-color: rgba(214,70,61,0.6);
  box-shadow: 0 0 0 1px rgba(214,70,61,0.25);
  background: #171717;
}

/* custom select */
.bba-select {
  position: relative;
  margin-bottom: 16px;
}

.bba-select__trigger {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Oswald', sans-serif;
}

.bba-select__trigger:hover,
.bba-select.is-open .bba-select__trigger {
  border-color: rgba(214,70,61,0.6);
  box-shadow: 0 0 0 1px rgba(214,70,61,0.25);
  background: #171717;
}

.bba-select__trigger-text {
  font-size: 16px;
  color: #fff;
}

.bba-select.is-placeholder .bba-select__trigger-text {
  color: rgba(255,255,255,0.38);
}

.bba-select__arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255,255,255,0.65);
  border-bottom: 2px solid rgba(255,255,255,0.65);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -3px;
}

.bba-select.is-open .bba-select__arrow {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.bba-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: none;
  max-height: 180px;
  overflow-y: auto;
}
.bba-lead-modal__content {
  max-height: 92vh;
  padding-top: 32px;
  padding-bottom: 32px;
}
.bba-select.is-open .bba-select__menu {
  display: block;
}

.bba-select__option {
   min-height: 34px;
  padding: 5px 10px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: all .18s ease;
  font-family: 'Oswald', sans-serif;
}

.bba-select__option:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(2px);
}

.bba-select__option.is-active {
  background: rgba(214,70,61,0.18);
  box-shadow: inset 0 0 0 1px rgba(214,70,61,0.25);
}

.bba-select__option.is-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.bba-select__option span {
  margin-left: auto;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.bba-select__menu::-webkit-scrollbar {
  width: 6px;
}

.bba-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}

.bba-select__menu::-webkit-scrollbar-track {
  background: transparent;
}

.submit-btn {
  width: 100%;
  height: 56px;
  margin-top: 4px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #e06454 0%, #c33a2f 100%);
  color: #fff;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .25s ease;
  box-shadow: 0 10px 30px rgba(214,70,61,0.25);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(214,70,61,0.35);
}

.submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-message {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.form-message.show {
  display: block;
}

.form-message.success {
  color: #8ee69b;
}

.form-message.error {
  color: #ff8e8e;
}

@media (max-width: 700px) {
  .bba-lead-modal {
    padding: 14px;
  }

  .bba-lead-modal__content {
  max-height: 92vh;
  padding-top: 32px;
  padding-bottom: 32px;
}

  .bba-lead-modal__title {
    font-size: 24px;
  }

  .bba-lead-form input,
  .bba-select__trigger {
    height: 56px;
    font-size: 16px;
  }
.bba-lead-form {
  margin-top: 12px;
}
  .bba-lead-form textarea {
    min-height: 110px;
    font-size: 16px;
  }

  .submit-btn {
    height: 58px;
    font-size: 18px;
  }
}
/* =========================
   FOOTER
   ========================= */

.bba-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 50px 0px;
  background: linear-gradient(180deg, #050505 0%, #020202 100%);
  border-top: 1px solid rgba(255,255,255,.05);
}

.bba-footer__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 90vw);
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(194,53,43,.14) 0%, rgba(194,53,43,.06) 30%, rgba(194,53,43,0) 70%);
  filter: blur(36px);
  opacity: .9;
}

.bba-footer__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.bba-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1fr) minmax(220px, .8fr);
  gap: 70px;
  align-items: start;
}

.bba-footer__col {
  min-width: 0;
}

.bba-footer__logo-main {
  font-size: clamp(34px, 2.4vw, 35px);
  line-height: .92;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.bba-footer__logo-sub {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.bba-footer__desc {
  margin: 30px 0 0;
  max-width: 420px;
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}

.bba-footer__title {
  margin: 0 0 15px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.bba-footer__item {
  margin-bottom: 22px;
}

.bba-footer__link,
.bba-footer__text {
  display: inline-block;
  font-size: clamp(18px, 1.1vw, 28px);
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  word-break: keep-all;
  overflow-wrap: normal;
}

.bba-footer__link {
  text-decoration: none;
  transition: color .22s ease, text-shadow .22s ease;
}

.bba-footer__link:hover {
  color: #ff6a5f;
  text-shadow: 0 0 18px rgba(194,53,43,.18);
}

.bba-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.4;
  font-weight: 600;
  color: rgba(255,255,255,.42);
}

/* TABLET */
@media (max-width: 1100px) {
  .bba-footer {
    padding: 52px 18px 24px;
  }

  .bba-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bba-footer__desc {
    max-width: 700px;
    margin-top: 22px;
  }

  .bba-footer__title {
    margin-bottom: 16px;
  }

  .bba-footer__item {
    margin-bottom: 14px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .bba-footer {
    padding: 42px 14px 22px;
  }

  .bba-footer__logo-main {
    font-size: 28px;
  }

  .bba-footer__logo-sub {
    font-size: 13px;
    margin-top: 10px;
  }

  .bba-footer__desc {
    font-size: 16px;
    line-height: 1.55;
  }

  .bba-footer__title {
    font-size: 10px;
    letter-spacing: .22em;
  }

  .bba-footer__link,
  .bba-footer__text {
    font-size: 13px;
  }

  .bba-footer__bottom {
    font-size: 14px;
    margin-top: 24px;
    padding-top: 18px;
  }
}

/* =========================
   BBA CHAT WIDGET
   ========================= */

#bba-chat,
.bba-chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: 'Oswald', sans-serif;
}

/* FAB */
#bba-chat-fab,
.bba-chat-widget__fab {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow:
    0 18px 40px rgba(194,53,43,.30),
    0 0 0 1px rgba(255,255,255,.08) inset;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#bba-chat-fab:hover,
.bba-chat-widget__fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 24px 50px rgba(194,53,43,.36),
    0 0 0 1px rgba(255,255,255,.12) inset;
  filter: brightness(1.04);
}
.bba-chat-icon {
  font-size: 20px;
  line-height: 1;
}
#bba-chat-fab:active,
.bba-chat-widget__fab:active {
  transform: translateY(0) scale(.98);
}

#bba-chat-fab span,
.bba-chat-widget__fab span {
  font-size: 24px;
  line-height: 1;
}

.bba-chat-widget__fab svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* TEASER */
#bba-chat-teaser,
.bba-chat-widget__teaser {
  position: fixed;
  right: 18px;
  bottom: 92px;

  min-width: 180px;
  max-width: 240px;
  width: max-content;

  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(255,255,255,.96);
  font-size: 13px;
  line-height: 1.32;
  white-space: normal;
  word-break: normal;

  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    rgba(10,10,10,.84);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 14px 34px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.02) inset;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#bba-chat-teaser.show,
#bba-chat-teaser.is-visible,
.bba-chat-widget__teaser.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#bba-chat-teaser.fade-out {
  opacity: 0;
  transform: translateY(6px);
}

/* WINDOW / PANEL */
#bba-chat-window,
.bba-chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(88vw, 340px); 
  height: min(68vh, 520px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(194,53,43,.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    rgba(8,8,8,.94);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.02) inset;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
}

#bba-chat-window.is-visible,
.bba-chat-widget.is-open .bba-chat-widget__panel,
.bba-chat-widget__panel[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#bba-chat-window.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
}

/* HEADER AREA */
.bba-chat-widget__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.bba-chat-widget__title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.56);
}

/* CLOSE */
#bba-chat-close,
.bba-chat-widget__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.92);
  font-size: 24px;
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
  z-index: 5;
}

#bba-chat-close:hover,
.bba-chat-widget__close:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(214,70,61,.16), rgba(214,70,61,.08));
  border-color: rgba(214,70,61,.18);
}

/* BODY */
#chat-body,
.bba-chat-widget__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.14) transparent;
}

#chat-body::-webkit-scrollbar,
.bba-chat-widget__body::-webkit-scrollbar {
  width: 8px;
}

#chat-body::-webkit-scrollbar-thumb,
.bba-chat-widget__body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}

#chat-body::-webkit-scrollbar-track,
.bba-chat-widget__body::-webkit-scrollbar-track {
  background: transparent;
}

/* ROWS */
.bba-msg-row,
.bba-chat-row {
  display: flex;
  width: 100%;
  animation: bbaChatFade .22s ease;
}

.bba-msg-row--bot,
.bba-chat-row--bot {
  justify-content: flex-start;
}

.bba-msg-row--user,
.bba-chat-row--user {
  justify-content: flex-end;
}

@keyframes bbaChatFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUBBLES */
.bba-msg,
.bba-chat-bubble {
  width: fit-content;
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 20px;
  line-height: 1.38;
  padding: 10px 12px;
  color: #fff;
  word-break: break-word;
  box-shadow:
    0 10px 24px rgba(0,0,0,.20),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.bba-msg--bot,
.bba-chat-bubble--bot {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.94);
  border-top-left-radius: 8px;
}

.bba-msg--user,
.bba-chat-bubble--user {
  background:
    linear-gradient(180deg, rgba(214,70,61,.13), rgba(214,70,61,.07));
  border: 1px solid rgba(214,70,61,.14);
  color: #fff;
  border-top-right-radius: 8px;
  box-shadow:
    0 12px 26px rgba(194,53,43,.12),
    0 0 0 1px rgba(255,255,255,.015) inset;
}

.bba-msg-meta,
.bba-chat-meta {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

/* OPTIONS */
.bba-options,
.bba-chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.bba-option,
.bba-chat-option {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(214,70,61,.12);
  background:
    linear-gradient(180deg, rgba(214,70,61,.05), rgba(255,255,255,.02));
  color: #fff;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  line-height: 1.28;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(0,0,0,.16),
    0 0 0 1px rgba(255,255,255,.01) inset;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.bba-option:hover,
.bba-chat-option:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(214,70,61,.075), rgba(255,255,255,.028));
  border-color: rgba(214,70,61,.18);
  box-shadow:
    0 12px 26px rgba(194,53,43,.10),
    0 0 0 1px rgba(255,255,255,.01) inset;
}

.bba-option:active,
.bba-chat-option:active {
  transform: translateY(0);
}

/* TYPING */
.bba-typing-row {
  display: flex;
  justify-content: flex-start;
  animation: bbaChatFade .22s ease;
}

.bba-typing,
.bba-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 18px;
  border-top-left-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.bba-typing span,
.bba-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.68);
  animation: bbaTypingBlink 1.1s infinite ease-in-out;
}

.bba-typing span:nth-child(2),
.bba-chat-typing span:nth-child(2) {
  animation-delay: .15s;
}

.bba-typing span:nth-child(3),
.bba-chat-typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bbaTypingBlink {
  0%, 80%, 100% {
    transform: scale(.7);
    opacity: .4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* FORM INSIDE CHAT */
.bba-phone-wrap,
.bba-chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding: 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.bba-phone-input,
.bba-chat-form input,
.bba-chat-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  outline: none;
  background: rgba(255,255,255,.03);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.bba-phone-input::placeholder,
.bba-chat-form input::placeholder,
.bba-chat-form textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.bba-phone-input:focus,
.bba-chat-form input:focus,
.bba-chat-form textarea:focus {
  border-color: rgba(214,70,61,.28);
  box-shadow: 0 0 0 3px rgba(214,70,61,.10);
  background: rgba(255,255,255,.04);
}

.bba-submit,
.bba-chat-card__cta,
.bba-chat-form button {
  min-height: 46px;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  background:
    linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow: 0 14px 30px rgba(194,53,43,.22);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.bba-submit:hover,
.bba-chat-card__cta:hover,
.bba-chat-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(194,53,43,.28);
  filter: brightness(1.04);
}

.bba-submit:disabled,
.bba-chat-form button:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

/* PRICE / INFO CARDS */
.bba-price-card,
.bba-chat-price-card,
.bba-chat-card {
  padding: 12px 13px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  line-height: 1.4;
  font-size: 13px;
  animation: bbaChatFade .22s ease;
}

.bba-chat-card__title {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.1;
  color: #fff;
}

.bba-chat-card__text {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.bba-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,.56);
}

/* MOBILE */
@media (max-width: 640px) {
  #bba-chat-teaser,
  .bba-chat-widget__teaser {
    right: 14px;
    bottom: 84px;
    min-width: 150px;
    max-width: 190px;
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1.25;
  }
}

  #bba-chat-window,
  .bba-chat-widget__panel {
    width: min(94vw, 350px);
    height: min(70vh, 520px);
    bottom: 76px;
    border-radius: 24px;
  }

  #chat-body,
  .bba-chat-widget__body {
    padding: 14px 10px 12px;
    gap: 6px;
  }

  .bba-msg,
  .bba-chat-bubble {
    max-width: 82%;
    padding: 10px 12px;
    font-size: 12.5px;
  }

  .bba-option,
  .bba-chat-option {
    padding: 11px 13px;
    font-size: 12.5px;
    border-radius: 16px;
  }

  #bba-chat-teaser,
  .bba-chat-widget__teaser {
    right: 14px;
    bottom: 84px;
    max-width: 180px;
    padding: 10px 12px;
    font-size: 12px;
  }

  #bba-chat-fab,
  .bba-chat-widget__fab {
    width: 58px;
    height: 58px;
  }

  #bba-chat-close,
  .bba-chat-widget__close {
    width: 38px;
    height: 38px;
   top: 8px;
   right: 8px;
  }

#bba-chat-window,
.bba-chat-widget__panel {
  overflow: hidden;
}

#chat-body,
.bba-chat-widget__body {
  padding: 58px 12px 14px; /* главный фикс: больше top padding */
  box-sizing: border-box;
}

#bba-chat-close,
.bba-chat-widget__close {
  top: 12px;
  right: 12px;
  z-index: 20;
}
.bba-chat-widget__topbar {
  padding: 14px 56px 10px 18px;
  box-sizing: border-box;
}

.bba-chat-widget__title {
  padding-left: 2px;
}

#chat-body,
.bba-chat-widget__body {
  padding: 14px 12px 14px;
}
.bba-msg-row:first-child,
.bba-chat-row:first-child,
.bba-typing-row:first-child {
  margin-top: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s ease,
    transform .8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: translateY(24px) scale(.96);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal--scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.bba-reviews-premium__nav {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.bba-reviews-premium__nav.is-disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.bba-reviews-premium__nav:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}
/* ===== FORCE CHAT HEADER INSIDE PANEL ===== */

#bba-chat-window,
.bba-chat-widget__panel {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}

/* сам верхний блок чата */
.bba-chat-widget__topbar,
.bba-chat-widget__header,
.bba-chat-header,
.bba-chat-head {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 58px; /* запас под крестик */
  z-index: 15;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 0;
  margin: 0;
  box-sizing: border-box;

  transform: none !important;
}

/* строки в header */
.bba-chat-widget__title,
.bba-chat-widget__subtitle,
.bba-chat-widget__status,
.bba-chat-widget__online,
.bba-chat-header__title,
.bba-chat-header__status {
  margin: 0;
  padding: 0;
  text-align: left;
  transform: none !important;
  max-width: 100%;
}

.bba-chat-widget__title,
.bba-chat-header__title {
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.bba-chat-widget__subtitle,
.bba-chat-widget__status,
.bba-chat-widget__online,
.bba-chat-header__status {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
}

/* body опускаем ниже header */
#chat-body,
.bba-chat-widget__body {
  padding-top: 62px !important;
  box-sizing: border-box;
}

/* крестик поверх всего */
#bba-chat-close,
.bba-chat-widget__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 30;
}
#bba-chat-window,
.bba-chat-widget__panel {
  position: absolute;
}

#bba-chat-close,
.bba-chat-widget__close {
  position: absolute !important;
  top: 0px !important;
  right: -40px !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 50 !important;

  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* =============================================
   BUTTON REDESIGN — VIBRANT COLOR + GLITCH GLOW
   ============================================= */

@keyframes bba-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(240,74,53,.28),
      0 16px 44px rgba(200,38,22,.32),
      inset 0 1px 0 rgba(255,255,255,.12);
  }
  50% {
    box-shadow:
      0 0 30px rgba(240,74,53,.52),
      0 20px 54px rgba(200,38,22,.46),
      inset 0 1px 0 rgba(255,255,255,.16);
  }
}

@keyframes bba-glitch {
  0%   { clip-path: inset(18% 0 68% 0); transform: translateX(-4px); opacity: .72; }
  20%  { clip-path: inset(58% 0 22% 0); transform: translateX( 4px); opacity: .50; }
  40%  { clip-path: inset(32% 0 50% 0); transform: translateX(-2px); opacity: .68; }
  60%  { clip-path: inset(72% 0  8% 0); transform: translateX( 3px); opacity: .38; }
  80%  { clip-path: inset( 5% 0 84% 0); transform: translateX(-3px); opacity: .58; }
  100% { clip-path: inset(0   0 100% 0); opacity: 0; }
}

/* — Base: brighter gradient + glow pulse — */
.hero-bba__btn,
.bba-trial-single__btn,
.bba-plan-card__btn,
.bba-gift-card__buy,
.bba-artist__btn,
.bba-course-full__btn,
.bba-visit__cta,
.bba-studio__btn,
.submit-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f04a35 0%, #c8251a 100%);
  box-shadow:
    0 0 14px rgba(240,74,53,.28),
    0 16px 44px rgba(200,38,22,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: bba-glow-pulse 3s ease-in-out infinite;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

/* — Hover: enhanced glow, lift, brighter gradient — */
.hero-bba__btn:hover,
.bba-trial-single__btn:hover,
.bba-plan-card__btn:hover,
.bba-gift-card__buy:hover,
.bba-artist__btn:hover,
.bba-course-full__btn:hover,
.bba-visit__cta:hover,
.bba-studio__btn:hover,
.submit-btn:hover {
  background: linear-gradient(155deg, #f5583e 0%, #d42d20 100%);
  box-shadow:
    0 0 32px rgba(240,74,53,.60),
    0 22px 58px rgba(200,38,22,.50),
    inset 0 1px 0 rgba(255,255,255,.20);
  transform: translateY(-3px);
}

/* — ::before: scanline texture — */
.hero-bba__btn::before,
.bba-trial-single__btn::before,
.bba-plan-card__btn::before,
.bba-gift-card__buy::before,
.bba-artist__btn::before,
.bba-course-full__btn::before,
.bba-visit__cta::before,
.bba-studio__btn::before,
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,.07) 2px,
    rgba(0,0,0,.07) 3px
  );
  mix-blend-mode: overlay;
}

/* — ::after: glitch artifact, fires on hover — */
.hero-bba__btn::after,
.bba-trial-single__btn::after,
.bba-plan-card__btn::after,
.bba-gift-card__buy::after,
.bba-artist__btn::after,
.bba-course-full__btn::after,
.bba-visit__cta::after,
.bba-studio__btn::after,
.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255,130,100,.45) 0%, rgba(255,60,30,.28) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.hero-bba__btn:hover::after,
.bba-trial-single__btn:hover::after,
.bba-plan-card__btn:hover::after,
.bba-gift-card__buy:hover::after,
.bba-artist__btn:hover::after,
.bba-course-full__btn:hover::after,
.bba-visit__cta:hover::after,
.bba-studio__btn:hover::after,
.submit-btn:hover::after {
  animation: bba-glitch .22s steps(1) 2;
}

/* =============================================
   MOTION ENHANCEMENTS — PREMIUM ANIMATIONS
   ============================================= */

/* --- Hero section entrance stagger --- */
@keyframes bba-enter {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-bba__logo {
  animation: bba-enter .9s cubic-bezier(.22,1,.36,1) .08s both;
}
.hero-bba__title {
  animation: bba-enter .9s cubic-bezier(.22,1,.36,1) .24s both;
}
.hero-bba__result {
  animation: bba-enter .8s cubic-bezier(.22,1,.36,1) .40s both;
}
.hero-bba__btn {
  animation:
    bba-enter .8s cubic-bezier(.22,1,.36,1) .54s both,
    bba-glow-pulse 3s ease-in-out 1.6s infinite;
}
.hero-bba__note {
  animation: bba-enter .7s cubic-bezier(.22,1,.36,1) .68s both;
}

/* --- Plan card hover lift --- */
.bba-plan-card {
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    box-shadow .32s ease,
    border-color .22s ease,
    background .22s ease;
}
.bba-plan-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
}
.bba-plan-card--featured {
  box-shadow: 0 0 0 1px rgba(224,61,45,.22), 0 8px 32px rgba(224,61,45,.1);
}
.bba-plan-card--featured:hover {
  transform: translateY(-7px);
  box-shadow:
    0 28px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(224,61,45,.45),
    0 0 40px rgba(224,61,45,.2);
}

/* --- Gift card: shine sweep on hover --- */
@keyframes bba-card-shine {
  from { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  30%  { opacity: 1; }
  to   { transform: translateX(240%) skewX(-20deg); opacity: 0; }
}
.bba-gift-card__shine {
  overflow: hidden;
}
.bba-gift-card__shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.32) 50%,
    transparent
  );
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}
.bba-gift-card:hover .bba-gift-card__shine::after {
  animation: bba-card-shine .72s ease forwards;
}

/* --- Gift card: ribbon glow on hover --- */
@keyframes bba-ribbon-glow {
  0%, 100% { box-shadow: 0 12px 26px rgba(183,31,31,.28); }
  50% { box-shadow: 0 12px 36px rgba(224,61,45,.55), 0 0 16px rgba(224,61,45,.28); }
}
.bba-gift-card:hover .bba-gift-card__ribbon {
  animation: bba-ribbon-glow .8s ease-in-out 2;
}

/* --- Review shot hover lift --- */
.bba-review-shot:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 24px 48px rgba(0,0,0,.58);
}

/* --- Result items hover micro-animation --- */
.bba-result-icon {
  display: inline-flex;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}
.bba-result-item:hover {
  transform: translateY(-3px);
  border-color: rgba(224,61,45,.22);
  background: rgba(255,255,255,.055);
}
.bba-result-item:hover .bba-result-icon {
  transform: scale(1.18) rotate(-5deg);
}

/* --- Artist list points stagger on reveal --- */
.bba-artist__point {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .42s ease, transform .42s cubic-bezier(.22,1,.36,1);
}
.bba-artist.is-visible .bba-artist__point:nth-child(1) {
  opacity: 1; transform: none; transition-delay: .22s;
}
.bba-artist.is-visible .bba-artist__point:nth-child(2) {
  opacity: 1; transform: none; transition-delay: .36s;
}
.bba-artist.is-visible .bba-artist__point:nth-child(3) {
  opacity: 1; transform: none; transition-delay: .50s;
}
.bba-artist.is-visible .bba-artist__point:nth-child(4) {
  opacity: 1; transform: none; transition-delay: .64s;
}

/* --- Nav link animated underline --- */
.bba-header__nav a {
  position: relative;
}
.bba-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bba-red);
  border-radius: 1px;
  transition: width .28s cubic-bezier(.22,1,.36,1);
}
.bba-header__nav a:hover::after,
.bba-header__nav a:focus-visible::after {
  width: 100%;
}

/* --- Red span subtle glow pulse --- */
@keyframes bba-text-glow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 22px rgba(224,61,45,.36), 0 2px 10px rgba(224,61,45,.18); }
}
.bba-section__title span,
.bba-memberships__title span,
.bba-trial-single__title span,
.bba-artist__title span,
.bba-studio__title span,
.bba-visit__title span,
.bba-flow__title span,
.bba-course-full__title span,
.bba-gifts__title span,
.bba-reviews-premium__title span,
.bba-results-title span {
  animation: bba-text-glow 5s ease-in-out infinite;
}

/* --- Course full feature cards hover --- */
.bba-course-full__card {
  transition: transform .28s cubic-bezier(.22,1,.36,1), background .28s ease;
}
.bba-course-full__card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.07);
}

/* --- Side item icon — match result-icon size (58px) + hover bounce --- */
.bba-side-item__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  transition: transform .36s cubic-bezier(.34,1.56,.64,1);
}
.bba-side-item:hover .bba-side-item__icon {
  transform: scale(1.22) rotate(-8deg);
}

/* --- Individual section: softer card motion --- */
.bba-section--individual .bba-plan-card.reveal {
  transform: translateY(20px) scale(.99);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.22,1,.36,1);
}

.bba-section--individual .bba-plan-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.bba-section--individual .bba-plan-card:hover {
  transform: translateY(-4px);
}

.bba-section--individual .bba-plan-card:hover .bba-plan-card__bg {
  transform: scale(1.03);
}

/* =============================================
   DIRECTIONS GRID — main page
   ============================================= */
.bba-directions {
  position: relative;
  z-index: 3;
  padding: 52px 20px 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(196,23,23,.08), transparent 58%),
    linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 76%, rgba(10,10,10,0) 100%);
  border-bottom: 0;
}
.bba-directions::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(10,10,10,0) 0%,
      rgba(10,10,10,.72) 42%,
      #0a0a0a 100%
    );
}
.bba-directions__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.bba-directions__inner > .bba-kicker {
  margin-bottom: 26px;
}
.bba-directions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.bba-dir-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  color: #fff;
  transition: transform .26s cubic-bezier(.22,1,.36,1), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.bba-dir-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,23,23,.28);
  background: rgba(196,23,23,.06);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(196,23,23,.1);
}
.bba-dir-card--soon {
  opacity: .36;
  pointer-events: none;
}
.bba-dir-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d6463d 0%, #bc2f27 100%);
  box-shadow: 0 10px 24px rgba(183,31,31,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.bba-dir-card__name {
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
}
.bba-dir-card__soon-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-top: 3px;
}
@media (max-width: 960px) {
  .bba-directions__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .bba-directions { padding: 36px 16px 28px; }
  .bba-directions__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bba-dir-card { gap: 10px; padding: 14px 14px; }
  .bba-dir-card__icon { width: 40px; height: 40px; font-size: 18px; border-radius: 12px; }
  .bba-dir-card__name { font-size: 15px; }
  .bba-directions::after { height: 42px; }
  .bba-results-wrap {
    margin-top: -12px;
    padding-top: 86px;
  }
}

/* =============================================
   SEO DIRECTION PAGES
   ============================================= */

/* Hero */
.bba-seo-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 140px 20px 110px;
  overflow: hidden;
  text-align: center;
}
.bba-seo-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.17);
  z-index: 0;
}
.bba-seo-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(196,23,23,.18), transparent 54%);
}
.bba-seo-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.bba-seo-hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.08;
  margin: 18px 0 24px;
  color: #fff;
}
.bba-seo-hero__title span { color: #d6463d; }
.bba-seo-hero__sub {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255,255,255,.72);
  font-weight: 400;
  line-height: 1.5;
  max-width: 660px;
  margin: 0 auto 0;
}

/* Section structure */
.bba-seo-section {
  padding: 80px 20px;
}
.bba-seo-section--red-grad {
  background:
    radial-gradient(circle at top center, rgba(196,23,23,.10), transparent 28%),
    radial-gradient(circle at bottom center, rgba(196,23,23,.08), transparent 32%),
    linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.bba-seo-section--dark {
  background: radial-gradient(circle at 50% 50%, rgba(196,23,23,.08), transparent 62%), #0d0d0d;
}
.bba-seo-container {
  max-width: 1100px;
  margin: 0 auto;
}
.bba-seo-section__title {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}
.bba-seo-section__title span { color: #d6463d; }
.bba-seo-section__text {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.42;
  color: rgba(255,255,255,.72);
}

/* Benefits — 3-col grid of result-items */
.bba-seo-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin-top: 28px;
}
@media (max-width: 700px) {
  .bba-seo-benefits { grid-template-columns: 1fr; }
}

/* Trial card */
.bba-seo-trial {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.42);
  background: #000;
  margin-top: 0;
  padding: 54px 48px;
  display: flex;
  align-items: center;
}
.bba-seo-trial__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.22);
}
.bba-seo-trial__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.36) 60%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.60) 100%);
}
.bba-seo-trial__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
@media (max-width: 640px) {
  .bba-seo-trial { padding: 36px 24px; min-height: auto; border-radius: 24px; }
}

/* Process grid — 2-col side-items */
.bba-seo-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.bba-seo-step-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}
@media (max-width: 640px) {
  .bba-seo-process-grid { grid-template-columns: 1fr; }
}

/* Final CTA section */
.bba-seo-cta {
  padding: 80px 20px 90px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.05);
}
.bba-seo-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}
.bba-seo-cta__link {
  font-size: 16px;
  color: rgba(255,255,255,.54);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .22s ease;
}
.bba-seo-cta__link:hover { color: #d6463d; }

@media (max-width: 640px) {
  .bba-seo-hero { min-height: 500px; padding: 110px 16px 80px; }
  .bba-seo-section { padding: 56px 16px; }
  .bba-seo-cta { padding: 56px 16px 64px; }
}

/* =========================
   MOBILE UX TUNING
   ========================= */
@media (max-width: 768px) {
  .hero-bba::after {
    z-index: 1 !important;
    height: 160px !important;
  }

  .hero-bba__inner {
    z-index: 4 !important;
  }

  /* Hero CTA on mobile: remove dim blend layers, keep button bright */
  .hero-bba__btn {
    background: linear-gradient(155deg, #ff5b41 0%, #d33727 100%) !important;
    box-shadow:
      0 0 22px rgba(240, 74, 53, .42),
      0 14px 40px rgba(200, 38, 22, .42),
      inset 0 1px 0 rgba(255,255,255,.22) !important;
    filter: saturate(1.1) brightness(1.08) !important;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
  }

  .hero-bba__btn::before,
  .hero-bba__btn::after {
    display: none !important;
  }

  /* Prevent glyph clipping for accented uppercase letters */
  .hero-bba__title,
  .bba-flow__title,
  .bba-trial-single__title,
  .bba-memberships__title,
  .bba-section__title,
  .bba-artist__title,
  .bba-course-full__title,
  .bba-gifts__title,
  .bba-studio__title,
  .bba-visit__title,
  .bba-reviews-premium__title,
  .bba-seo-hero__title,
  .bba-seo-section__title {
    line-height: 1.03 !important;
    padding-top: .06em;
  }

  /* Shorter, cleaner mobile copy rhythm */
  .bba-results-text,
  .bba-flow__text,
  .bba-trial-single__text,
  .bba-memberships__lead,
  .bba-course-full__text,
  .bba-seo-hero__sub,
  .bba-seo-section__text {
    font-size: clamp(17px, 4.6vw, 21px) !important;
    line-height: 1.3 !important;
  }

  .bba-plan-card__meta {
    font-size: 15px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 700px) {
  /* Gift card direction title should sit above card frame */
  .bba-gift-card__title {
    padding-top: 0 !important;
    margin: 0 0 14px !important;
    transform: translateY(-10px);
  }
}

/* ===== SEO language structure additions ===== */
.bba-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.bba-nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.bba-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.bba-nav-dropdown > summary::after {
  content: ' ▾';
  font-size: 12px;
  opacity: .75;
}

.bba-nav-dropdown[open] > summary,
.bba-nav-dropdown > summary:hover {
  color: var(--bba-red);
}

.bba-nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  display: grid;
  gap: 8px;
  z-index: 100;
}

.bba-nav-dropdown__menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.9);
}

.bba-nav-dropdown__menu a:hover {
  color: #fff;
  background: rgba(214,70,61,.2);
}

.bba-mobile-menu__group-title {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}

.bba-review-shot--text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color: #fff;
}

.bba-review-shot--text h3 {
  margin: 0;
  font-size: 20px;
}

.bba-review-shot--text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}

.bba-review-shot--text a {
  color: #f5b277;
  text-decoration: none;
  font-weight: 600;
}

.bba-review-shot--text a:hover {
  color: #fff;
  text-decoration: underline;
}

.bba-direction-deep {
  padding-top: 88px;
}

.bba-direction-deep__lead {
  margin: 16px 0 28px;
  max-width: 980px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.42;
}

.bba-direction-deep__media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.bba-direction-deep__media figure {
  margin: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}

.bba-direction-deep__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.bba-direction-deep__media figcaption {
  padding: 12px 14px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}

.bba-direction-deep__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bba-direction-deep__card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}

.bba-direction-deep__card h3 {
  margin: 0 0 12px;
  color: #fff;
}

.bba-direction-deep__card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .bba-direction-deep__media,
  .bba-direction-deep__grid {
    grid-template-columns: 1fr;
  }

  .bba-direction-deep__media img {
    height: 230px;
  }
}

@media (max-width: 900px) {
  .bba-nav-dropdown {
    display: none;
  }
}

/* ===== Header nav alignment polish ===== */
.bba-header {
  align-items: center;
}

.bba-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bba-header__nav > a,
.bba-nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  line-height: 1;
}

.bba-nav-dropdown > summary::after {
  margin-left: 4px;
}

.bba-header__lang {
  margin-left: 0;
  margin-right: 0;
}

.bba-header__phone {
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .bba-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .bba-header__brand {
    position: relative;
    z-index: 2;
  }

  .bba-header__nav {
    position: static;
    transform: none;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: center;
    margin-left: clamp(8px, 1.2vw, 18px);
    z-index: 1;
  }

  .bba-header__lang {
    position: static;
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .bba-header__phone {
    position: relative;
    z-index: 2;
    margin-left: 12px;
  }
}

/* ===== Selector Facelift ===== */
.bba-nav-dropdown > summary {
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.bba-nav-dropdown > summary::after {
  content: " \25BE";
  font-size: 11px;
}

.bba-nav-dropdown[open] > summary,
.bba-nav-dropdown > summary:hover {
  border-color: rgba(214,70,61,.58);
  background: linear-gradient(180deg, rgba(214,70,61,.16), rgba(214,70,61,.08));
}

.bba-nav-dropdown__menu {
  top: calc(100% + 10px);
  min-width: 238px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(20,20,20,.98) 0%, rgba(8,8,10,.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.05);
  gap: 0;
}

.bba-nav-dropdown__menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 44px 10px 42px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  color: rgba(255,255,255,.92);
  transition: color .2s ease, background .2s ease, transform .2s ease;
  overflow: hidden;
}

.bba-nav-dropdown__menu a + a {
  border-top: 1px solid rgba(255,255,255,.08);
}

.bba-nav-dropdown__menu a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: 13px;
}

.bba-nav-dropdown__menu a:nth-child(1)::before { content: "🎙"; }
.bba-nav-dropdown__menu a:nth-child(2)::before { content: "🎸"; }
.bba-nav-dropdown__menu a:nth-child(3)::before { content: "🎹"; }
.bba-nav-dropdown__menu a:nth-child(4)::before { content: "🥁"; }
.bba-nav-dropdown__menu a:nth-child(5)::before { content: "💻"; }

.bba-nav-dropdown__menu a::after {
  content: "" !important;
  position: absolute;
  right: 14px;
  top: 50%;
  left: auto;
  bottom: auto;
  width: 18px !important;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background:
    radial-gradient(circle at 48% 50%, rgba(214,70,61,.95) 0 2px, rgba(255,255,255,.95) 2.4px 3px, transparent 3.2px),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(-50%) scale(.74);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}

.bba-nav-dropdown__menu a:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(214,70,61,.22), rgba(214,70,61,.08) 58%, rgba(255,255,255,0) 100%);
  transform: translateX(2px);
}

.bba-nav-dropdown__menu a:hover::after,
.bba-nav-dropdown__menu a:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  animation: bba-eye-look 1.15s ease-in-out infinite alternate;
}

@keyframes bba-eye-look {
  0% { background-position: 40% 50%, 0 0; }
  100% { background-position: 62% 50%, 0 0; }
}

.bba-select__menu {
  top: calc(100% + 8px);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(20,20,20,.985) 0%, rgba(8,8,10,.985) 100%);
  box-shadow: 0 22px 52px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.05);
  max-height: 240px;
}

.bba-select__option {
  position: relative;
  min-height: 38px;
  padding: 8px 38px 8px 38px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  transform: none;
}

.bba-select__option + .bba-select__option {
  border-top: 1px solid rgba(255,255,255,.07);
}

.bba-select__option::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.26);
  background:
    radial-gradient(circle at 48% 50%, rgba(214,70,61,.88) 0 1.8px, rgba(255,255,255,.92) 2px 2.7px, transparent 2.9px),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  opacity: 0;
  transform: translateY(-50%) scale(.75);
  transition: opacity .2s ease, transform .2s ease;
}

.bba-select__option::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
}

.bba-select__option[data-value="Вокал"]::before,
.bba-select__option[data-value="Vocal"]::before { content: "🎙"; }
.bba-select__option[data-value="Гитара"]::before,
.bba-select__option[data-value="Chitara"]::before { content: "🎸"; }
.bba-select__option[data-value="Фортепиано"]::before,
.bba-select__option[data-value="Pian"]::before { content: "🎹"; }
.bba-select__option[data-value="Барабаны"]::before,
.bba-select__option[data-value="Tobe"]::before { content: "🥁"; }
.bba-select__option[data-value="Создание музыки"]::before,
.bba-select__option[data-value="Productie muzicala"]::before { content: "💻"; }
.bba-select__option.is-disabled::before { content: "💿"; }

.bba-select__option:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(214,70,61,.2), rgba(214,70,61,.08) 58%, rgba(255,255,255,0) 100%);
  transform: translateX(2px);
}

.bba-select__option:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  animation: bba-eye-look .95s ease-in-out infinite alternate;
}

.bba-select__option.is-active {
  background: linear-gradient(90deg, rgba(214,70,61,.28), rgba(214,70,61,.1));
  box-shadow: inset 0 0 0 1px rgba(214,70,61,.35);
}

/* ===== Language Selector ===== */
.bba-lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: clamp(16px, 2.2vw, 32px);
  flex-shrink: 0;
}

@media (min-width: 901px) and (max-width: 1400px) {
  .bba-header__nav {
    gap: 16px;
    margin-left: clamp(6px, 1vw, 12px);
  }

  .bba-lang-dropdown {
    margin-left: clamp(14px, 1.9vw, 24px);
  }
}

.bba-lang-dropdown > summary {
  list-style: none;
  cursor: pointer;
  min-width: auto;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.bba-lang-dropdown > summary::-webkit-details-marker {
  display: none;
}

.bba-lang-dropdown > summary::after {
  content: " \25BE";
  font-size: 11px;
  margin-left: 4px;
}

.bba-lang-dropdown[open] > summary,
.bba-lang-dropdown > summary:hover {
  border-color: rgba(214,70,61,.58);
  background: linear-gradient(180deg, rgba(214,70,61,.16), rgba(214,70,61,.08));
  color: #fff;
}

.bba-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 92px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(20,20,20,.98) 0%, rgba(8,8,10,.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.05);
  display: grid;
  gap: 0;
  z-index: 120;
}

.bba-lang-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease;
}

.bba-lang-dropdown__item::after {
  content: none !important;
}

.bba-lang-dropdown__item:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(214,70,61,.20), rgba(214,70,61,.08));
}

.bba-lang-dropdown__item.is-active {
  color: #fff;
  background: rgba(255,255,255,.10);
  pointer-events: none;
}

.bba-mobile-menu__lang-switch {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bba-mobile-menu__lang-pill {
  min-width: 54px;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bba-mobile-menu__lang-pill.is-active {
  border-color: rgba(214,70,61,.65);
  background: rgba(214,70,61,.2);
  color: #fff;
}

/* ===== Production Course Page ===== */
.bba-prod-page .bba-seo-hero__content {
  max-width: 920px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.bba-prod-page .bba-seo-hero__content::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 18px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: radial-gradient(circle, rgba(214,70,61,.16), transparent 68%);
  filter: blur(.2px);
  opacity: .72;
  pointer-events: none;
  animation: bba-prod-orb 8.5s ease-in-out infinite alternate;
}

.bba-prod-hero .bba-seo-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(214,70,61,.24), transparent 42%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.10), transparent 34%);
  pointer-events: none;
}

.bba-prod-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  transform: translateX(clamp(6px, .9vw, 14px));
}

.bba-prod-hero__chips span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.bba-prod-hero__chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(214,70,61,.45);
  background: rgba(214,70,61,.16);
}

.bba-prod-roadmap {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.bba-prod-roadmap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: bba-prod-shine 5.4s ease-in-out infinite;
}

.bba-prod-progress {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 22px 0 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.bba-prod-progress span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d6463d, rgba(214,70,61,.42));
  box-shadow: 0 0 18px rgba(214,70,61,.45);
  transform-origin: left center;
  animation: bba-prod-load 1.4s cubic-bezier(.22,1,.36,1) both;
}

.bba-prod-soft {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(130deg, rgba(214,70,61,.16), rgba(255,255,255,.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
}

.bba-prod-soft__tag {
  justify-self: center;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(9,9,11,.64);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.bba-prod-price {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 14% -30%, rgba(214,70,61,.24), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
}

.bba-prod-listen {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
  padding: 26px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 50% -32%, rgba(214,70,61,.22), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.bba-prod-listen .bba-seo-cta__link {
  display: inline-block;
  margin-top: 10px;
}

.bba-prod-countdown-wrap {
  padding-top: 36px;
}

.bba-prod-countdown {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 26px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 10% -26%, rgba(214,70,61,.34), transparent 52%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.11), transparent 42%),
    linear-gradient(180deg, rgba(15,15,20,.96), rgba(8,8,10,.96));
  box-shadow: 0 16px 44px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}

.bba-prod-countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 18%, rgba(255,255,255,.09) 50%, transparent 74%);
  transform: translateX(-140%);
  animation: bba-prod-luxe 5.8s ease-in-out infinite;
  pointer-events: none;
}

.bba-prod-countdown__lead {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto 8px;
  text-align: center !important;
}

.bba-prod-countdown__grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bba-prod-countdown__cell {
  min-width: 126px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}

.bba-prod-countdown__cell strong {
  display: block;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.3vw, 48px);
  line-height: .95;
  letter-spacing: .05em;
  text-shadow: 0 0 24px rgba(214,70,61,.54);
}

.bba-prod-countdown__cell span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.86);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bba-prod-countdown__spots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,70,61,.5);
  background: rgba(214,70,61,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bba-prod-spots 1.8s ease-in-out infinite alternate;
}

.bba-prod-price::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214,70,61,.20), transparent 70%);
  pointer-events: none;
}

.bba-prod-author__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.bba-prod-author__photo {
  position: relative;
}

.bba-prod-author__photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  opacity: .7;
  pointer-events: none;
}

.bba-prod-author__photo::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214,70,61,.24), transparent 72%);
  pointer-events: none;
  animation: bba-prod-pulse 4.6s ease-in-out infinite;
}

.bba-prod-author__photo img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 50px rgba(0,0,0,.38);
}

.bba-prod-author__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.bba-prod-author__stats span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bba-prod-author__listen {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214,70,61,.62);
  background: linear-gradient(180deg, rgba(214,70,61,.26), rgba(214,70,61,.14));
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(214,70,61,.26);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.bba-prod-author__listen:hover {
  transform: translateY(-1px);
  border-color: rgba(214,70,61,.9);
  background: linear-gradient(180deg, rgba(214,70,61,.38), rgba(214,70,61,.20));
  box-shadow: 0 0 32px rgba(214,70,61,.42);
}

@keyframes bba-prod-load {
  from { transform: scaleX(0); opacity: .2; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes bba-prod-shine {
  0%, 100% { left: -58%; opacity: 0; }
  18%, 46% { opacity: .6; }
  70% { left: 126%; opacity: 0; }
}

@keyframes bba-prod-pulse {
  0%, 100% { transform: scale(.94); opacity: .54; }
  50% { transform: scale(1.08); opacity: .84; }
}

@keyframes bba-prod-orb {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(8px); }
  100% { transform: translateY(4px) translateX(-6px); }
}

@keyframes bba-prod-luxe {
  0%, 100% { transform: translateX(-140%); opacity: 0; }
  28%, 56% { opacity: .7; }
  78% { transform: translateX(150%); opacity: 0; }
}

@keyframes bba-prod-spots {
  from { box-shadow: 0 0 0 rgba(214,70,61,0); }
  to { box-shadow: 0 0 24px rgba(214,70,61,.46); }
}

@media (max-width: 980px) {
  .bba-prod-soft,
  .bba-prod-author__grid {
    grid-template-columns: 1fr;
  }

  .bba-prod-soft__tag {
    justify-self: start;
  }

  .bba-prod-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .bba-prod-page .bba-seo-hero__content::after {
    display: none;
  }

  .bba-prod-hero__chips {
    transform: none;
  }
}
