.adaptive-pricing-card__banner{
  padding: 24px;
  margin-bottom: 16px;
  background-color:#efe263;
  border-radius: 15px;
}

.adaptive-pricing-card__banner a {
  text-decoration: underline;
}

.adaptive-pricing-card {
  margin: 24px 0px;
}

.adaptive-pricing-card__intro {
  background: radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.1), transparent 70%), #2e1b71;
  color: #fff;
  border-radius: 15px;
  position: relative;
}

.adaptive-pricing-card__intro .details {
  min-width: 380px;
  width: 44%;
  padding: 30px;
  
  @media (max-width: 600px) {
    width: 100%;
  }
}

.adaptive-pricing-card__intro .details h2 {
  color: #fff;
  font-weight: 700;
}

.adaptive-pricing-card__intro .details ul,
.module ul {
  margin: 15px 0;
  padding: 0 0 0 18px;
}

.adaptive-pricing-card__intro .details li{
  list-style-image: url('https://www.starmind.ai/hubfs/Pricing%202025/checkmark.svg');
  color: #fff;
  font-size: 14px;
  padding-left: 7px;
}

.module li {
  list-style-image: url('https://www.starmind.ai/hubfs/Pricing%202025/checkmark_purple.svg');
  color: #000000;
  font-size: 14px;
  padding-left: 7px;
}

.adaptive-pricing-card__intro .details li::marker,
.module li::marker  {
  font-size: 24px;
  line-height: 10px;
}

.adaptive-pricing-card__intro .details .price {
  color: #efe263;
}
.adaptive-pricing-card__intro .details .price .base {
  font-weight: 700;
}
.adaptive-pricing-card__intro .details .including {
  font-size: 0.8rem;
  margin-top: 7px;
}

.adaptive-pricing-card__intro .details .including .label {
  border: 1px solid #5135c1;
  border-radius: 5px;
  color: #fff;
  padding: 2px 5px;
  margin-left: 5px;
}

.adaptive-pricing-card__intro .details .including .label .profiles {
  box-shadow: inset 0 0 10px #5135c1;
  margin-right: 5px;
}

.adaptive-pricing-card__intro .graph {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
}

.adaptive-pricing-card__intro svg {
  width: 100%;
  height: 100%;
}

.adaptive-pricing-card__intro .pricing-slider {
  position: absolute;
  bottom: 20px;
  right: 18%;
  z-index: 10;

  /* A narrower container */
  width: 30%;
  padding: 8px 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Subtle “glassy” background */
  background: rgba(46, 27, 113, 0.4);
  backdrop-filter: blur(4px);

  /* Soft border & rounded corners */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;

  /* Slight drop-shadow to help it stand out */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .adaptive-pricing-card__intro .graph,
  .adaptive-pricing-card__intro .pricing-slider {
    display: none;
  }
}

#profileSlider {
  /* Make the slider itself fill remaining horizontal space */
  flex: 1;
  margin: 0 12px;  /* space on each side of the slider thumb */

  /* Remove default appearance on WebKit */
  -webkit-appearance: none;
  background: #5135c1;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  width: 50%;
}

/* Thumb styling for Chrome/Safari/Edge (WebKit) */
#profileSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #64f6da;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #2e1b71;
  box-shadow: 0 0 5px rgba(100,246,218,0.5);
}

/* Thumb styling for Firefox */
#profileSlider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #64f6da;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #2e1b71;
  box-shadow: 0 0 5px rgba(100,246,218,0.5);
}

/* Profile count styling */
.adaptive-pricing-card__intro .pricing-slider .count {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;  /* keep “1,920 profiles” on a single line */
}

#profileSlider {
  --width: 50%;
}


.enterprise-toggle {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.enterprise-toggle .toggle-label {
  margin-right: 10px;
  cursor: pointer;
  font-weight: 600;
}

.enterprise-toggle .toggle-label input {
  margin-right: 5px;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #2e1b71;
  cursor: pointer;
}

.tooltip-container .tooltip {
  visibility: hidden;
  width: 220px;
  background-color: #5135c1;
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 8px;
  position: absolute;
  bottom: 25px;
  left: 25px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 12;
}
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


/* Flex container for modules */
.adaptive-pricing-card__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.adaptive-pricing-card__modules .module {
  background: radial-gradient(circle at 80% 20%, #f2f4f4, #fff);
  border: none;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  --flex: 1;
  flex: 1 1 200px;
}

/* Activated state: pure white with a subtle blue glow */
.adaptive-pricing-card__modules .module.active {
  background: #fff;
  box-shadow: 0 0 15px 3px rgba(100, 246, 218, 0.5); /* adjust glow intensity as needed */
}

.adaptive-pricing-card__modules .module.combo-deal {
  position: relative; /* ensure the banner positions relative to the module */
}

.combo-banner {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #64f6da;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transform: rotate(-5deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  color: #2e1b71;
}

.adaptive-pricing-card__modules .module h2 {
  margin: 7px 30px 5px 0;
  padding: 0;
  
  color: #000000;
  font-size: 20px;
  font-weight: 800;
}

.adaptive-pricing-card__modules .module .price {
  color: #5135c1;
  font-weight: bold;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 12px;
}

/* Module toggle (placed at top right) */
.module-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Shared feature list styling */
.feature-list {
  margin: 15px 0;
  padding: 0 10px;
  list-style-image: url('https://www.starmind.ai/hubfs/Pricing%202025/checkmark.svg');
  font-size: 0.8rem;
  padding-left: 7px;
}

/* Toggle switch styling (for both enterprise & modules) */
.toggle-label input {
  display: none;
}

.toggle-label {
  display: inline-block;
  position: relative;
  padding-left: 60px; /* space for the toggle switch */
  line-height: 24px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-label .toggle-switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 24px;
  background-color: #ccc;
  border-radius: 34px;
  transition: background-color 0.3s;
}

.enterprise-toggle .toggle-label .toggle-switch {
  background-color: #5135c1;
}

.toggle-label .toggle-switch::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  top: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.enterprise-toggle .toggle-label .toggle-label .toggle-switch::before {
  background-color: #999;
}

.toggle-label input:checked + .toggle-switch {
  background-color: #5135c1;
}

.toggle-label input:checked + .toggle-switch::before {
  background-color: #64f6da;
  transform: translateX(26px);
}


/* Visual states for modules */
.module.semi-active {
  opacity: 0.5;
}

.adaptive-pricing-card__calculator {
  background: #2e1b71;
  color: #fff;
  border-radius: 15px;
  margin-top: 20px;
  padding: 30px;
  position: relative;
}
#calculatorDeactivated {
  text-align: center;
}
#closeCalculator {
  position: absolute;
  font-size: 30px;
  top: 0;
  right: 20px;
  display: block;
  font-weight: normal;
  text-decoration: none;
}
.adaptive-pricing-card__calculator table {
  text-align: left;
  border: none;
  border-collapse: collapse;
  width: 100%;
  background-color: #2E1B71;
}
.adaptive-pricing-card__calculator table td,
.adaptive-pricing-card__calculator table th {
  border-bottom: 1px solid #fff;
  padding: 5px 10px;
  text-align: left;
  vertical-align: top;
  color: #fff;
  background-color: #2E1B71;
}
.adaptive-pricing-card__calculator table th {
  font-size: 12px;
}
.adaptive-pricing-card__calculator .product strong {
  color: #fff;
  font-weight: 700;
  display: block;
}
.adaptive-pricing-card__calculator .product .description {
  display: block;
  margin: 3px 0 10px 0;
  font-size: 10px;
  color: #fff;
}
.adaptive-pricing-card__calculator .quantity {
  width: 100px;
  font-size: 14px;
}
.adaptive-pricing-card__calculator .price {
  width: 100px;
  font-weight: 700;
  font-size: 14px;
}
.adaptive-pricing-card__calculator .totalLabel {
  text-align: right;
  border-bottom: none;
  font-size: 14px;
}
.adaptive-pricing-card__calculator .totalPrice {
  font-weight: 700;
  border-bottom: none;
  font-size: 14px;
}
.adaptive-pricing-card__calculator a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.adaptive-pricing-card__calculator a:hover {
  color: #fff;
  text-decoration: none;