.cbts-hero{
  --cbts-purple:#7c1f96;
  --cbts-purple-2:#a834c4;
  --cbts-gold:#e3b023;
  font-family: 'Outfit', sans-serif;
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}
.cbts-hero,
.cbts-hero *{ box-sizing: border-box; }
.cbts-hero *{ font-family: 'Outfit', sans-serif; }

/* Slides */
.cbts-hero__slides{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cbts-hero__slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease;
  animation: cbtsKenBurns 12s ease forwards;
}
.cbts-hero__slide.is-active{
  opacity: 1;
  z-index: 1;
}
@keyframes cbtsKenBurns{
  0%{ transform: scale(1.08); }
  100%{ transform: scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .cbts-hero__slide{ animation: none; transform: none; }
}

.cbts-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .85;
  background: linear-gradient(135deg, rgba(30,8,38,1) 0%, rgba(61,15,74,.85) 45%, rgba(124,31,150,.6) 100%);
}

/* Ambient glow */
.cbts-hero__glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 2;
  pointer-events: none;
}
.cbts-hero__glow--1{
  width: 420px; height: 420px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(227,176,35,.25), transparent 70%);
}
.cbts-hero__glow--2{
  width: 380px; height: 380px;
  bottom: -160px; left: -80px;
  background: radial-gradient(circle, rgba(168,52,196,.28), transparent 70%);
}

/* Content */
.cbts-hero__content{
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cbts-hero__card{
  width: 100%;
  max-width: 720px;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 52px) clamp(18px, 5vw, 48px);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.cbts-hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.6vw, 14px);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cbts-gold);
  margin-bottom: 18px;
}
.cbts-hero__eyebrow::before,
.cbts-hero__eyebrow::after{
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cbts-gold);
  display: inline-block;
  flex: 0 0 auto;
}
.cbts-hero__title{
  font-size: clamp(24px, 5vw, 50px);
  line-height: 1.16;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  word-wrap: break-word;
}
.cbts-hero__title span{
  position: relative;
  display: inline-block;
  color: var(--cbts-gold);
}
.cbts-underline{
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 16px;
}
.cbts-hero__quote{
  font-size: clamp(13px, 2vw, 17px);
  line-height: 1.75;
  font-style: italic;
  color: rgba(255,255,255,.86);
  max-width: 560px;
  margin: 0 auto 30px;
  font-weight: 400;
}
.cbts-hero__quote span{
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: .82em;
  letter-spacing: .04em;
  color: var(--cbts-gold);
}
.cbts-hero__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--cbts-purple), var(--cbts-purple-2));
  color: #ffffff;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 600;
  text-decoration: none;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 32px);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(124,31,150,.45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.cbts-hero__btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(227,176,35,.4);
  background: linear-gradient(90deg, var(--cbts-purple-2), var(--cbts-gold));
  color: #ffffff;
}
.cbts-hero__btn svg{ width: 18px; height: 18px; flex: 0 0 auto; }

/* Dots */
.cbts-hero__dots{
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.cbts-hero__dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.cbts-hero__dot.is-active{
  background: var(--cbts-gold);
  transform: scale(1.25);
}

/* Arrows */
.cbts-hero__arrow{
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.cbts-hero__arrow:hover{
  background: rgba(227,176,35,.35);
  border-color: var(--cbts-gold);
}
.cbts-hero__arrow svg{ width: 18px; height: 18px; }
.cbts-hero__arrow--prev{ left: clamp(10px, 2vw, 24px); }
.cbts-hero__arrow--next{ right: clamp(10px, 2vw, 24px); }

/* Small-screen refinements (still overridable per-instance via Elementor responsive controls) */
@media (max-width: 767px){
  .cbts-hero__card{ border-radius: 18px; }
  .cbts-hero__arrow{ width: 36px; height: 36px; }
  .cbts-hero__dots{ bottom: 14px; }
}
@media (max-width: 480px){
  .cbts-hero__eyebrow::before,
  .cbts-hero__eyebrow::after{ width: 12px; }
}
