.pricing {
  background: #f5f7fa;
  padding: 120px 0;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

/* Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.toggle-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background: #e2e8f0;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.active {
  background: #1ba7a7;
  color: white;
}



/* Card */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* Popular */
.popular {
  border: 2px solid #6c63ff;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6c63ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
}

/* PRIMARY BUTTON */
.btn-primary-custom {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  background: #1ba7a7;
  border: none;
  color: white;
  font-weight: 600;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: #c4b5fd;   /* Light purple */
  color: #1e1b4b;
}

/* OUTLINE BUTTON */
.btn-outline {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #cbd5e1;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #c4b5fd;  /* Light purple */
  border-color: #c4b5fd;
  color: #1e1b4b;
}

/* List */
.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-card .disabled {
  color: #94a3b8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}


