:root {
  --cs-black: #000000;
  --cs-white: #ffffff;
  --cs-gold: #d5a84d;
  --cs-purple: #2d0136;
  --cs-purple-2:#3D0075;
  --cs-danger:#ed000d ;
  --cs-dark:#6a6a6a;
  --card-w-mobile: 86vw;
  --card-w-desktop: 520px;
  --radius-2xl: 1.25rem;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);
  --overlay: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.25) 55%, transparent);
}
.brand-color
{
    color: var(--cs-purple-2);
}




body {
  background-color: var(--cs-black);  
  color: #f5f5f5;             
  font-family: 'Montserrat', sans-serif;
}
.card, .accordion-body, .form-control, .form-select {
  background-color: #1a1a1a !important;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.1);
}

.text-muted {
  color: rgba(255,255,255,0.6) !important;
  font-size: 20px;
}
@media(max-width:676px)
{
  .text-muted{
    font-size: 15px;
  }
}

.accordion-button {
  background-color: #1a1a1a;
  color: #fff;
}
.accordion-button:not(.collapsed) {
  background-color: var(--cs-purple-2);
  color: #fff;
}
.bg-light {
  background-color: #1c1c1c !important; 
}
.form-control, .form-select, textarea {
  background-color: #262626;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.form-control::placeholder, 
textarea::placeholder {
  color: rgba(255,255,255,0.5);
}







/* default */
header {
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--cs-black);
}
/*scroll*/
.header-fix {
  position: fixed;
  background-color: var(--cs-white); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/*--- HEADER - NAV BAR BRAND TEXT ---*/
.navbar .brand-text{
  font-size: 25px;
  color: var(--cs-white);
  letter-spacing: 2px;
  margin-top: 10px;
  font-family: 'Russo One', sans-serif;
}
.brand-link
{
    text-decoration: none;
}
.navbar-nav .nav-link {
    display: inline-block;
    position: relative; 
    text-transform: uppercase;
    color: var(--cs-white);
    font-weight: 400;
    margin-left: 20px;
    padding-bottom: 5px; 
    font-size: 20px;
    font-family: 'Russo One', sans-serif;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--cs-purple-2); 
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.navbar-toggler i {
  font-size: 26px;
  color: var(--cs-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fa-times {
  transform: rotate(90deg); /* biar lebih dinamis pas berubah jadi X */
}
/* kasih ke semua section yang jadi target anchor */
[id] {
  scroll-margin-top: 90px; /* kira-kira setinggi header fix */
}


@media (max-width: 768px) {
  .navbar .brand-text {
    font-size: 28px;
  }
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
    font-size: 20px;
  }
  .navbar-nav{
    text-align: center;
    width: 100%;
    justify-content: center !important;
  }

  .navbar-nav .nav-item{
    display: inline-block;
    margin: 5px 10px;
  }
  .navbar-brand img{
        margin-left: 25px;
    };

   /**/
   .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--cs-white) !important;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* menu di tengah */
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }

  /* Saat menu terbuka */
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  /* Nav links styling */
  .navbar-collapse .nav-link {
    font-size: 30px;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  /* one by one menu*/
  .navbar-collapse.show .nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar-collapse.show .nav-item:nth-child(1) .nav-link { transition-delay: 0.05s; }
  .navbar-collapse.show .nav-item:nth-child(2) .nav-link { transition-delay: 0.1s; }
  .navbar-collapse.show .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
  .navbar-collapse.show .nav-item:nth-child(4) .nav-link { transition-delay: 0.3s; }
  .navbar-collapse.show .nav-item:nth-child(5) .nav-link { transition-delay: 0.4s; }

  /* Disable scrol */
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
}




/*-------- HERO ------------*/
.hero { 
  position: relative; 
  overflow: hidden; 
}

.hero-img {
  width: 100%;
  height: 100vh;     
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
  z-index: 1;
}

.hero-desc {
  position: absolute;
  top: 75%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--cs-white);
  font-family: 'Teko', sans-serif;
  z-index: 2;
  max-width: 700px;
}

.hero-desc h2 {
  font-weight: 900;                                     
  color: var(--cs-white);
  font-size: 55px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-desc p {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--cs-white);
  margin-top: 0px;
}

.btn-purple {
  background-color: var(--cs-purple-2);
  color: var(--cs-white);
  border: 0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 30px;
  transition: all 0.3s ease;
}
.btn-purple:hover {
  background-color: var(--cs-white);
  color: var(--cs-purple-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
@media (max-width: 767px){
  .hero-desc {
    top: 75%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    max-width: 90%;
  }

  .hero-desc h2 {
    font-size: 35px;

  }
  .btn.btn-purple { 
    font-size: 30px !important;
    padding: 12px 28px; }
}

/*VIDEO*/
.autoplay-on-scroll {
  object-fit: cover;
}






/*BODY AFTER HERO
-carousel-
*/ 
.brand-info h2{
    margin-top: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.brand-h2
{
    font-size: 40px;
}
.brand-info p{
    text-align: justify;
}
.btn-membership {
  background-color: var(--cs-purple-2);
  color: var(--cs-white);
  border: 0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 25px;
  transition: all 0.3s ease;
}
.btn-membership:hover {
  background-color: var(--cs-white);
  color: var(--cs-purple-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width:767px)
{
    .brand-info h2{
        margin-left: 12px;
    }
    .brand-info p{
        text-align: justify;
        margin-left: 10px;
        margin-right: 10px;
    }
    .intro-2
    {display: none;}

    .btn-membership
  {
      display: block;
      margin: 20px auto 0;
      max-width: 280px;
      font-size: 20px;
      
  }
    
}
/* carousel animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#picCarousel img {
  border-radius: 16px;
  object-fit: cover;
  height: 300px;
  width: 250px;
}




/*FACILITIES */
.facilities{
    margin-bottom: 10px;
    text-align: center;
}
.facilities h2{
    font-weight: bold;
    font-size: 35px;
}
.facilities  p{
    color: var(--cs-purple-2);
    font-weight: bold;
    font-size: 30px;
}
.card-facilities {
  height: 350px;
  overflow: hidden;

}
.card-facilities img {
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-facilities:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
}

.card-overlay h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.card-overlayp {
  margin: 5px 0 0;
  font-size: 15px;
}
@media (max-width: 767px){
    .facilities  p{
        font-size: 20px;
    }
    .facilities h2{
        font-size: 30px;
    }
}


/*TRAINER*/
.trainer-section {
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(61, 0, 117, 0.16), transparent 40%),
    radial-gradient(600px 300px at 85% -20%, rgba(213, 168, 77, 0.10), transparent 50%),
    var(--cs-black);
}

.trainer{
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
.trainer h2{
  font-size: 35px;
  font-weight: 800;
  color: var(--cs-white);
  letter-spacing: .3px;
}
.trainer p{
  color: var(--cs-purple-2);
  font-size: 30px;
  margin: 0;
}
@media (max-width: 767px){
  .trainer h2{ font-size: 30px; }
  .trainer p { font-size: 20px; }
}

.trainer-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--card-w-mobile); 
  gap: 18px;
  overflow-x: auto;
  padding: 8px 16px 8px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.trainer-strip::-webkit-scrollbar { height: 8px; }
.trainer-strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 999px;
}

.trainer-card {
  scroll-snap-align: start;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #0f1115;
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 24px rgba(213,168,77,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 36px rgba(213,168,77,0.14);
}
.trainer-card:focus-visible{
  outline: 2px solid var(--cs-gold);
  outline-offset: 2px;
}


.trainer-media {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 380px; 
  margin: 0 auto; 
}
.trainer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
  filter: saturate(1.05) contrast(1.05);
}
.trainer-card:hover .trainer-media img { transform: scale(1.06); }


.trainer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay); /* dari root kamu */
  pointer-events: none;
}

.trainer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .8rem;
  background: rgba(0,0,0,.55);
  color: var(--cs-white);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}

.trainer-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
}
.trainer-meta { 
  color: var(--cs-white); 
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.trainer-name {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 2px;
  letter-spacing: .3px;
  font-weight: 800;
}
.trainer-title {
  color: rgba(255,255,255,.8);
  margin: 0 0 10px;
  font-weight: 600;
}

.trainer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.trainer-tags li {
  font-size: .8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cs-purple-2);
  color: var(--cs-white);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}

.btn-purple-trainer {
  background: linear-gradient(180deg, #ffe39a, var(--cs-gold));
  color: #231f0f;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(213,168,77,.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-purple-trainer:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn-purple-trainer:focus-visible{
  outline: 2px solid var(--cs-gold);
  outline-offset: 2px;
}

@media (min-width: 992px) {
  .trainer-strip {
    justify-content: center;
    grid-auto-columns: 380px;
    padding-inline: 32px;
    gap: 15px;
  }
}

.trainer-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.trainer-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: transform .25s ease, background .25s ease;
}
.trainer-dots .dot.is-active {
  background: var(--cs-purple-2);
  transform: scale(1.4);
}

@media (max-width: 767px) {
  .trainer-strip {
    grid-auto-columns: min(80vw, 400px);
    gap: 15px;
  }

  .trainer-media {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: none;  
    margin: 0;   
  }
  

  .trainer-name { font-size: 1.3rem; }
  .trainer-title { font-size: 0.9rem; }
}






/* MEMBERSHIP*/
.membership{
    text-align: center;
    margin-bottom: 10px;
}
.membership h2{
    font-weight: bold;
    font-size: 35px;
}
.membership p{
    color: var(--cs-purple-2);
    font-weight: bold;
    font-size: 30px;
}
.btn-purple-member{
  background-color: var(--cs-purple-2);
  color: var(--cs-white);
  border: 0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease;

}
.membership-card {
  background-color: var(--cs-white) !important;
  color: #000;          
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.membership-card h5{
  color: var(--cs-black);
  font-size: 25px;
  text-decoration: underline;
}

.membership-card h3
{
  color: var(--cs-black);
  font-size: 20px;
}
.membership-card ul li {
  color: var(--cs-black); 
  font-size: 18px;
}

.popular {
  border: 2px solid var(--cs-purple-2);
  position: relative;
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 15px;
  background: var(--cs-purple-2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .membership-card {
    font-size:20px;     
    padding: 8px !important;
  }

  .membership-card {
    font-size: 20px;
    padding: 6px 10px;
  }
  .membership p{
    font-size: 20px;}
    .btn-purple-member{
      font-size: 20px;
    }
}
.btn-purple-member:hover{
  background-color: var(--cs-black);
  color: var(--cs-white);
}





/*POP UP PROMO */
.modal-content {
  border: none;
  background: #fff;
  animation: popIn 0.4s ease;
}
.promo-price{
  text-decoration: line-through;
  color: var(--cs-danger);
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.btn-close {
  z-index: 1056; /* lebih tinggi dari modal backdrop */
  position: relative;
}
.btn-close:hover {
  transform: rotate(90deg); /* animasi kecil pas hover */
}
.btn-purple-promo{
  background-color: var(--cs-purple-2);
  color: var(--cs-white);
  border: 0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 25px;
  transition: all 0.3s ease;

}
@media (max-width:767px){
  .modal-dialog {
    max-width: 70%; /* biar gak terlalu lebar di layar kecil */
    margin: auto;
    min-height: 90vh;
  }
  .modal-body {
    padding: 1.5rem !important; /* kurangi padding */
  }
  .btn-purple-promo{
    font-size: 20px;
  }
  
}



/*TESTIMONI*/
.review-img {
  width: 60px;        
  height: 60px;
  object-fit: cover;   
  border-radius: 50%; 
  border: 2px solid #eee;
}

/* FAQ Accordion Custom */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-accordion .accordion-button {
  background: var(--cs-purple-2);
  color: var(--cs-white);
  font-weight: 600;
  padding: 14px 18px;
  transition: background 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--cs-white);
  color: var(--cs-black);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: invert(1); 
}

.faq-accordion .accordion-body {
  background: var(--cs-purple-2);
  color: var(--cs-white);
  font-size: 0.95rem;
  line-height: 1.6;
}



/*CONTACT*/
/* Contact Form */
form .form-control {
  border: 1px solid #ddd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
form .form-control:focus {
  border-color: var(--cs-purple-2);
  box-shadow: 0 0 0 0.2rem rgba(109, 40, 217, 0.25);
}

/* Floating WhatsApp Button */
.wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease, background 0.3s ease;
}

.wa-btn:hover {
  transform: scale(1.1);
  background: #1ebe5c;
  color: #fff;
}



/* ====== OPENING HIGHLIGHTS */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay support */
[style*="animation-delay"] {
  animation-fill-mode: both;
}

/*JOIN MEMBER*/
.join-membership ::placeholder {
  color: #b3b3b3 !important;
}


/*FOOTER*/
.maps-info h3{
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-decoration: underline;
}
.maps-info p{
  text-align: justify;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .maps-info iframe {
    min-height: 300px;
  }
  .maps-info {
    text-align: center;
  }
  .maps-info ul {
    text-align: left;
  }
}






.reviews-section h2 { font-size: clamp(22px, 3vw, 32px); }
.review-card{
  background: #0f1115;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.review-header{
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
}
.review-avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: #222;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--cs-white);
}
.review-name{ font-weight: 700; }
.review-rating{ color: #ffd76a; }
.review-time{ color: #9aa3ad; font-size: 12px; }
.review-text{ color: #dfe6ec; margin-top: 8px; font-size: 14px; line-height: 1.45; }

.footer-link{ color: #cfd6dd; text-decoration: none; }
.footer-link:hover{ color: var(--cs-white); text-decoration: underline; }
.footer-social{ color: #cfd6dd; font-size: 18px; }
.footer-social:hover{ color: var(--cs-white); }

.footer .btn-membership{
  background: var(--cs-purple-2);
  color: var(--cs-white);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.footer .btn-membership:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.footer .btn-outline-light{
  border-radius: 12px;
  font-weight: 700;
}
.contact-footer{
  color: var(--cs-white);
  
}
.contact-footer a{
  text-decoration: none;
  color: var(--cs-white);
}
.contact-footer a:hover{
  color: var(--cs-gold);
}






/*MEMBERSHIP PAGE */
.membership{
  text-align: center;
}
.membership h2{
  color: var(--cs-white);
  text-decoration: underline;
}
.membership p{
  color: var(--cs-purple-2);
}
.membership h5{
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--cs-black);
}

.price-card{
  background: var(--cs-white) !important; ;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{ 
  transform: translateY(-6px); 
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.price-card .btn-purple-member {
  width: 100%;
  text-align: center;
}

/*POPULAR PLAN*/
.price-card.popular{
  border:2px solid var(--cs-purple-2);
  position:relative;
}
.price-card .badge-popular{
  position:absolute; top:-12px; right:14px;
  background: var(--cs-purple-2);
  color: var(--cs-white);
  padding:4px 10px; font-size:12px; font-weight:700;
  border-radius:999px;
}

.display-price{
  font-weight:800;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing:.2px;
}

.btn-purple-member{
  background-color: var(--cs-purple-2);
  color: var(--cs-white);
  border: 0;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 16px;
  transition: all .25s ease;
}
.btn-purple-member:hover{ 
  background: var(--cs-black);
  transform: translateY(-1px);
}

.btn-outline-purple{
  border: 1.5px solid var(--cs-white);
  color: var(--cs-white);
  background: var(--cs-purple-2);
  font-weight: 700;
  border-radius: 10px;
}
.btn-outline-purple:hover{
  background-color: var(--cs-black);
}

.mini-feats li{ 
  line-height:1.2;
  color: var(--cs-black);
 }


.benefit-panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  text-align: left;
  margin-top: 12px;
  border-top: 1px dashed var(--cs-black);
  padding-top: 12px;
}
.benefit-list{
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px;
  color: var(--cs-black);
}
.benefit-list li{
  position: relative;
  padding-left: 24px;
  margin: 6px 0;
}
.benefit-list li::before{
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: var(--cs-purple-2);
  font-weight: 800;
}

.btn-membership{
  background:  var(--cs-purple-2);
  color: var(--cs-white);
  padding: 10px 18px;
  box-shadow: 0 6px 16px rgba(213,168,77,.35);
}

@media (max-width: 767px){
  .price-card .card-body{ padding: 1.2rem !important; }
  .btn-purple-member{ font-size: clamp(14px, 4.2vw, 18px); }
  .btn-outline-gold{ font-size: 14px; }
  .benefit-list li{ margin: 4px 0; }
}





