.membership-section {
  padding: 70px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Toggle */
.membership-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.toggle-btn {
  background: #1c1c1c;
  border: 1px solid #444;
  color: #fff;
  padding: 14px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 40px;
}

.toggle-btn span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

.toggle-btn.active {
  background: linear-gradient(135deg, #f7c948, #f59e0b);
  color: #000;
  border: none;
}

/* Cards */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.plan-card h3 {
  font-size: 30px;
  margin: 0;
}

.tagline {
  font-size: 14px;
  opacity: 0.75;
  margin: 8px 0 16px;
}

/* Price */
.price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 22px;
}

.price small {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

/* Features */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.plan-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Buttons */
.btn-outline {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #f7c948, #f59e0b);
  color: #000;
  font-weight: bold;
}

/* Popular */
.popular {
  border: 2px solid #f7c948;
}

.badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: #f7c948;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}